// ==UserScript==
// @name            CNN Ad Remover
// @namespace       http://www.cnn.com/SPECIALS/2008/heart/index.html
// @description     Strips ad from top right corner
// @include         http://www.cnn.com/SPECIALS/2008/heart/index.html
// ==/UserScript==


(function() 
{
//look for the iFrame ID
	var findFrameID = document.getElementById("ad-571686");
	if(findFrameID != null)
	{
		//set style of iFrame to hidden
		findFrameID.style.display = "none";
	}

})();
