
function rotateBanner()
{

//Type here the number of ads that will be rotate
var how_many_ads = 1


/****************     DO NOT MODIFY NEXT PART  ********************/
var now = new Date()
var sec = now.getSeconds()
var ad = sec % how_many_ads;
ad +=1;
/********************* END DO NOT MODIFY THIS PART *******************/



/* For each copy the code enclosed in  AD'S CODE, sustitute N in statement if(ad == N) for a next unique number of the sequence 
the secuence start from 1 to how_many_ads value you typed above
*/



//******************** AD'S CODE  ****************


if (ad==3) 
{
	url="http://www.ehorse.com/live_help.html";
	
	alt="Live Help";

	banner="http://www.ehorse.com/new_images/live_help_468x60.gif";

	width="468";

	height="60";
	
	nofollow="";
}

//***************END AD'S CODE *********************

//******************** AD'S CODE  ****************

if (ad==1) 
{
	url="http://www.americanturf.com/index.cfm?siteid=ehorse";
	
	alt="Track Magazine";

	banner="http://www.ehorse.com/new_images/468X60_ATM.gif";
	
	
	//nofollow=" rel=\"nofollow\" ";
	//nofollow="";
	nofollow=" rel=\"nofollow\"";

	width="468";

	height="60";
}

//***************END AD'S CODE *********************

/*
//******************** AD'S CODE  ****************

if (ad==3) 
{
	url="http://www.thoroughbredracingradionetwork.com";
	
	alt="Thoroughbred Racing Radio";

	banner="http://www.ehorse.com/new_images/atrab_banner_468x60_2007.gif";

	width="468";

	height="60";
	
	nofollow=" rel=\"nofollow\"";
}

//***************END AD'S CODE *********************



//******************** AD'S CODE  ****************

if (ad==4) 
{
	url="http://www.ehorse.com/moneybookers_special.html";
	
	alt="Moneybookers Promotion";

	banner="http://www.ehorse.com/new_images/moneybookers_promo.gif";

	width="468";

	height="60";
	
	nofollow=" rel=\"nofollow\"";
}

//***************END AD'S CODE *********************
*/



/****************     DO NOT MODIFY NEXT PART  ********************/
var innerText = '<center>';
innerText = innerText + '<a href=\"' + url + '\" target=\"_blank\"' + nofollow +'\">';
innerText = innerText + '<img src=\"' + banner + '\" width=';
innerText = innerText + width + ' height=' + height + ' ';
innerText = innerText + 'alt=\"' + alt + '\" border=0>';
innerText = innerText + '</a><br></center>';

document.getElementById('bannerrotate').innerHTML = innerText;
var t=setTimeout("rotateBanner()",15500);
/*document.write('<center>');

document.write('<a href=\"' + url + '\" target=\"_blank\"' + nofollow +'\">');

document.write('<img src=\"' + banner + '\" width=')

document.write(width + ' height=' + height + ' ');

document.write('alt=\"' + alt + '\" border=0>');

document.write('</a><br></center>');

alert(document.getElementById('bannerrotate').innerHTML);
*/
}






