var intCount = 4; //delay in changing     
var arBanners = new Array();
var assnNbr=2403;
// images need to be in 
arBanners[0] ="http://www.unitedlinen.com/|ORA-united linen logo.jpg";
arBanners[1] ="http://www.okrestaurants.com/displaycommon.cfm?an=1&subarticlenbr=13|ServSafe.gif";

function fnWriteBanner(intBan)
{
		var object = arBanners[intBan].split('|');
		
		var htmlStr  = "<img src='/associations/"+assnNbr+"/buyersguide/affbgads/assnconf/images/"+object[1]+"' border='0' onclick='document.location=\""+object[0]+"\"' width='242' height='62'>";
		$('bannertitle').setStyle({background:'url()'});
		$('bannertitle').update(htmlStr);
		intBan++;
		if(intBan == arBanners.length)
		{
			intBan = 0;
		}
		setTimeout("fnWriteBanner("+intBan+")", (intCount*1000));
}
Event.observe(window, 'load', function() {
 fnWriteBanner(0);
});

