function startDate() {
	setDate();
	setCurDate();
	setInterval( "setCurDate()", 1000 );
}

function setCurDate() {
	document.getElementById( "curDate" ).innerHTML = curDate() + ", " + curTime();
}

function curDate() {
	var dt = new Date();
	return aDays[ dt.getDay() ] + ", " + dt.getDate() + " " + aMonths[ dt.getMonth() ] + " " + dt.getFullYear()
}	

function curTime() {
	var dt = new Date();
	return dt.getHours() + ":" + dt.getMinutes() + ":" + dt.getSeconds();
}	


