// JavaScript Document
function activeCt()	{
		var sourceList = new Array();
		sourceList[0] = "default_banner.swf";
		var bannerpath = "banners/";
		getImg = Math.floor(Math.random()*sourceList.length);
		// default_banner has replaced this randomizing code
		// it now reads the source list from an xml file loader.xml
		
		document.write("<OBJECT classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0\" WIDTH=\"820\" HEIGHT=\"185\" id=\"banner\" >");
		document.write("<PARAM NAME=movie VALUE=\"" + bannerpath + sourceList[getImg] + "\"> <PARAM NAME=loop VALUE=false> <PARAM NAME=menu VALUE=false> <PARAM NAME=quality VALUE=high> <PARAM NAME=wmode VALUE=transparent> <PARAM NAME=bgcolor VALUE=#dddddd>");
		document.write("<EMBED src=\"" + bannerpath + sourceList[getImg] + "\" loop=false menu=false quality=high wmode=transparent bgcolor=#dddddd WIDTH=\"820\" HEIGHT=\"185\" NAME=\"banner\" "); 
		document.write("TYPE=\"application/x-shockwave-flash\" PLUGINSPAGE=\"http://www.macromedia.com/go/getflashplayer\"></EMBED></OBJECT>");
}