$(document).ready(function() {
	$(".slideRight").hover(function() {
			$(this).animate({ width: "35px"}, 250);
		}, function() {
			$(this).animate({ width: "29px" }, 250);
	});
	$(".activeButton").animate({ width: "40px"}, 250);
	$(".activeButton").hover(function() {
			$(this).animate({ width: "35px"}, 250);
		}, function() {
			$(this).animate({ width: "40px" }, 250);
	});
});
datetoday = new Date();
timenow=datetoday.getTime();
datetoday.setTime(timenow);
thehour = datetoday.getHours();
if(thehour < 6) display = "night";
else if(thehour > 6 && thehour < 9) display = "morning";
else if(thehour > 17 && thehour < 20) display = "evening";
else if(thehour > 20) display = "night";
else display = "day";
document.write('<link rel="stylesheet" type="text/css" href="/styles/'+display+'.css" media="screen" />');