// action du menu pour lesourire.ch

$(document).ready(function() {
	
$("ul#topnav li").hover(function() {
	
	// if subnav not visible already
	if($(this).find("span").is(":visible") == false) {
		// hide all of them
		$("ul#topnav li span").hide(); 
		
		// show arrow first ?

		// and slide this particular subnav
		$(this).find("span").slideDown('slow');
	}
	// in all cases show the subnav
	 $(this).find("span").show();
	
} , function() { //on hover out...
	// do nothing - it will stay displayed
	// $(this).find("span").hide();
});

	
});
