$(function() {
	var morning=["Buenos d&iacute;as","Bos d&iacute;as","Good Morning"];
	var evening=["Buenas tardes","Boas tardes","Good evening"];
	var night=["Buenas noches","Boas noites","Good Night"];
	var text=[];
	
	var now=new Date();
	var hour=now.getHours();
	
	if ((hour>=7) && (hour<14)) {
		text=morning;				
	} else if ((hour>=14) && (hour<21)) {
		text=evening;		
	} else {
		text=night;
	}

	
	var i=0;
	$("#language ul a").each(function() {
		$(this).html(text[i++]);
	});
	
	$("#language a").click(function() {
		var href=$(this).attr("href");
		$("#language").fadeOut(300,function() {
			window.location=href;		
		})		
		return false;
	})
	
})