$(document).ready(function() {
	$("ul#navmenu li").hover(function() { 
		$(this).css({ 'background' : '#333 url(css/img/fondli.png) top no-repeat', 'filter' : 'alpha(opacity=90)' , '-moz-opacity': '0.9' , 'opacity' : '0.9'}); //Add background color and image on hovered list item
		$(this).find("span").slideDown("fast");
		if($.browser.msie) { var hauteur = $(this).width(); $(this).find("span").css({marginLeft:"-"+hauteur+"px"});   }
		$(this).prev().find("span").fadeOut("fast");
		$(this).siblings().find("span").fadeOut("fast");			
	// Hover over event on list item
	} , function() { //on hover out...
		$(this).css({ 'background' : 'none' , 'filter' : 'alpha(opacity=100)' , '-moz-opacity': '1' , 'opacity' : '1'}); //Ditch the background
		$(this).find("span").hide(); //Hide the subnav
	});
});



