$(function(){
	
	$('.cube_menu0 li').hover(
			function(){
				$(this).children().show();
				$(this).siblings().children('ul').hide();
				$('.cube_menu a').eq(0).show();
				$(this).children('a').css('background','none');
			},
			function(){
				//$('.cube_menu ul ul').hide();
				$(this).children('a').css('background','none');
				if($(this).hasClass('menuSelected'))
					$(this).children('a').css('background','none');
			});
	$('.cube_menu0 ul').hover(
		function(){
			$(this).show();
		},
		function(){
			$(this).hide();
		});
	$('.cube_menu0 ul ul').hover(
		function(){
			$(this).show();
		},
		function(){
			$(this).hide();
		});
});
