function greeting() 
{
	var response
	currentTime = new Date();

	if (currentTime.getHours() < 12)
	{
		response="Good Morning! Welcome to Karinya House. Today is "
	}
	else if (currentTime.getHours() < 18)
	{
		response="Good Afternoon! Welcome to Karinya House. Today is "
	}
	else
	{
		response="Good Evening! Welcome to Karinya House. Today is "
	}
	document.write(response);
}
