$(function(){
	$(".nav li:last").css("background","none");
	$(".nav li").mouseover(function(){
		$(this).find("ul").show();
		$(this).find("ul").prev("a").css({background:"url(/images_fran/nav_hover_bg.gif) #feffd0 repeat-x 0",color:"#0c9ac2"})
	}).mouseout(function(){
			$(this).find("ul").hide();
			$(this).find("ul").prev("a").css({background:"",color:""})
		});
});