
$(window).resize(function(){		
	});

 $(document).ready(function(){
		menu();
	});
 
 function menu(){
		 $(".menudiv td").hover(function(){
				$(this).toggleClass("hover");
			},function(){
				$(this).removeClass("hover");
			});
	 }
