<!-- hide script from old browsers 
	var d = new Date()
	var time = d.getHours()
	if (time<12)
	{
	document.write("Good morning,");
	}
	else if (time>11 && time<18)
	{
	document.write("Good afternoon,");
	}
	else if (time>17 && time<24)
	{
	document.write("Good Evening,");
	}
// end hiding script from old browsers -->
