/*** script to bring current day to top of page ***/

coldate=new Date();
date = coldate.getDate();
month = coldate.getMonth();

function moveDay() { 
	day = "d" + date + eval(month + 1);
	window.location.hash=day;
}
// window.onload = moveDay();
