		//scrolling message of the day by A1 javaScripts
		//http://www.a1javascripts.com/
		//Make new array and get the current day in var today
		var msg = new Array();
		//put the tip of the day in each msg[x] string
		msg[0]=""
		//Specify the marquee's width (in pixels)
		var marqueewidth=765
		//Specify the marquee's height (in pixels, NS Only)
		var marqueeheight=10
		//Specify the marquee's scroll speed (higher is faster)
		var speed=6
		//Specify the marquee contents
		
		if (document.all)
		document.write("<span style='vertical-align: sub'><b><font style='font-size:12px;' face='Arial, Helvetica, sans-serif' color=#4F4F4F>" + '<marquee scrollAmount='+speed+' style="width:'+marqueewidth+'"><font face="Arial">'+(msg[0])+'</font></marquee></b></span>')
		
		function regenerate(){
			window.location.reload()
		}
		function regenerate2(){
			if (document.layers){
				setTimeout("window.onresize=regenerate",450)
				intializemarquee()
			}
		}
		
		function intializemarquee(){
		document.cmarquee01.document.cmarquee02.document.write('<nobr>'+(msg[today-1])+'</nobr>')
		document.cmarquee01.document.cmarquee02.document.close()
		thelength=document.cmarquee01.document.cmarquee02.document.width
		scrollit()
		}
		
		function scrollit(){
		if (document.cmarquee01.document.cmarquee02.left>=thelength*(-1)){
		document.cmarquee01.document.cmarquee02.left-=speed
		setTimeout("scrollit()",100)
		}
		else{
		document.cmarquee01.document.cmarquee02.left=marqueewidth
		scrollit()
		}
		}
		window.onload=regenerate2
