jQuery(document).ready(function(){
	//$('.subMenu').css('display', 'none');
	jQuery('.menu_li').hover(function(){ 
		//alert($(this).children('.subMenu').children('.subMenu_li').text());
		jQuery(this).children('.subMenu').css('display', 'block'); 
	}, function(){ 
		jQuery(this).children('.subMenu').css('display', 'none'); 
	})
});
