
function cal ()
{
	todaysDate = new Date();
    montharray = new Array("Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec");
    greetdate = montharray[todaysDate.getMonth()] + " " + todaysDate.getDate() + ", " + todaysDate.getFullYear();
	document.write(greetdate);		
}

	function scrollIt(msg)
		{
		top.window.status = msg;
		newmsg = msg.substring(1,msg.length) + msg.substring(0,1);
		setTimeout ("top.window.status = newmsg;scrollIt(newmsg);",125);
		}
