$(document).ready(function(){
	cacher();
	
	$('.menu_ul li.menu_li > span').hover(afficher,cacher);	
	$('.menu_ul li.menu_li ul.sous_menu').hover(afficher1,cacher);		
});


function afficher1()
{
	$(this).show();
}


function afficher()
{

	$(this).next("ul.sous_menu").show();

}

function cacher()
{	
	$('ul.sous_menu').hide();
}
	
