
/* 
	BRIEF INSTRUCTIONS
	
	1. make sure the ad is EXACTLY 200px wide.
	2. put it into the ads folder inside zResources
	3. change the 4 lines below:
	   - change "no" to "yes" makes the ad appear
	   - AdFileName is the name of the ad file. For example: LiveUpPublishing.jpg
	   - WhereToGo is the link to go to when the ad is clicked: For example: http://www.lauraruggeri.com
	   - ToolTip is the text you see if you pause your mouse over the ad
	4. To remove the Spotlight ad just set ShowThisAd to "no"

	Please see the file named: Adscript_BelowTheSidebar.js for COMPLETE documentation. 
	
*/


var ShowThisAd		= "yes";
var AdFileName      = "Ad-YourAdHere-100h.gif"
var WhereToGo		= "http://insidescooplive.com/services-advertising.html";
var ToolTip			= "Your Ad Here";




/* NO EDITING BELOW THIS LINE ============================================== */

var AdString		=  "<a href=\"";
    AdString		+=  WhereToGo;
    AdString		+=  "\"";
    AdString		+=  " title=\"";
    AdString		+=  ToolTip;
    AdString		+=  "\">";
    AdString        +=  "<img src=\"http://www.insidescooplive.com/zResources/ads/";
    AdString        +=  AdFileName;
    AdString        +=  "\" style=\"margin:0px 0px 0px 0px;\" />";
    AdString		+=  "<\/a>";

if (ShowThisAd == "yes") {
	document.write("<h2 style=\"clear:both;margin-bottom:1px;\">Advertising</h2><div style=\"overflow:hidden;width:100%;margin-bottom:1em;\">");
	document.write(AdString);
	document.write("</div>");
}


