$(document).ready(function(){
	$("#menubottom ul li ul").each(function(){
		$(this).hide();
		$(this).parent().hover(			
			function(){ $(this).children('ul').show();},	
			function(){ $(this).children('ul').hide();}
			
		);/*
		$("#menu ul li ul li ").each(function(){
		$(this).hide();
		$(this).parent('.menuh2 ul').hover(			
			function(){ $(this).children('ul').show();},	
			function(){ $(this).children('ul').hide();}
		);*/
	});
});



