function saludo()
{
currentTime = new Date();
if
	(currentTime.getHours() < 5)
	document.title = "Good night, welcome to cajas TRAVELBOX .com";
else
if
	(currentTime.getHours() < 12)
	document.title = "Good morning, welcome to cajas TRAVELBOX .com";
else
if
	(currentTime.getHours() < 21)
	document.title="Good afternon, welcome to cajas TRAVELBOX .com";
else
document.title="Good night, welcome to cajas TRAVELBOX .com";	
}
saludo()