var h=new Date();
timestyle=h.getHours();
if (0<=timestyle && timestyle<=9){stylepref='night'};
if (9<timestyle && timestyle<=18){stylepref='day'};
if (18<timestyle && timestyle<=23){stylepref='evening'};
document.write('<link rel="Stylesheet" href="'+stylepref+'.css">');

$(document).ready(function(){
   $(".cat_open").click(function(event){
   $(this).next(".cat_submenu").slideToggle("slow");
   return false;
 });
 
 $(".my_room").click(function(){
 	$(".login").toggleClass("login_close");
	$(".login").toggleClass("login_open");
	
   return false;
 });
});