<!-- hide script from old browsers
	Today = new Date();
	time = Today.getHours();
	if (time < 12)
		document.write("Good Morning Today is ");
	else if (time <= 17)
		document.write("Good Afternoon Today is ");
	else
		document.write("Good Evening Today is ");
<!-- end hiding script from old browsers-->

