$(document).ready(function(){
	
	$('#listMenuRoot ul').css('display' , 'none');
	
//	$('#listMenuRoot li').mouseenter(function(){
//		if($(this).children('ul').length > 0 && $(this).children('ul').attr('status') != 'opened' || $(this).children('ul').css('display') == 'none'){
//			$(this).children('ul').attr('status' , 'opened');
//			$(this).children('ul').slideDown(400);
//			setTimeout(function(){
//				$(this).children('ul').attr('status' , 'opened');
//			}, 400);
//		}
//	}).mouseleave(function(){
//		if($(this).children('ul').length > 0 && $(this).children('ul').attr('status') == 'opened'){
//			$(this).children('ul').slideUp(400);
//			setTimeout(function(){
//				$(this).children('ul').attr('status' , 'closed');
//			}, 400);
//		}
//	});
	
	
	$('#listMenuRoot li').mouseenter(function(){
		if($(this).children('ul').length > 0){
			$(this).children('ul').show();
		}
	}).mouseleave(function(){
		if($(this).children('ul').length > 0){
			$(this).children('ul').hide();
		}
	});
	
	
});
