<!--
function write_greetings() {
	now = new Date();

	var CurHour = now.getHours();
	var CurMinute = now.getMinutes();
	var Greetings;

	if (CurHour >= 0 && CurHour < 12) {
		Greetings = "Good Morning,<br />";
	} else if (CurHour >=12 && CurHour < 18) {
		Greetings = "Good Afternoon,<br />";
	} else if (CurHour >= 18 && CurHour <= 24) {
		Greetings = "Good Evening,<br />";
	}

	now = null;
	document.write(Greetings);
}

var timerID=setTimeout("",1000);

function link_description(link_name) {
	clearTimeout(timerID);
	window.status = link_name;
	timerID = setTimeout("window.status=''",2500);
}

// -->

