// JavaScript Document

// Script barre de naviguation //
jQuery(document).ready( function () { 
	jQuery("#menuDeroulant ul").hide();
	/*jQuery("#menuDeroulant > li.rub > a").mouseover( function(){ //L'icone 'home' ne devient pas bleu*/ 
	jQuery("#menuDeroulant > li > a").mouseover( function() { 
		jQuery(this).parent().find("ul").slideDown('slow').show();
		jQuery(this).parent().css('backgroundColor','#71a4c7');
		jQuery(this).parent().hover(function() {}, function(){       
			jQuery(this).parent().find("ul").slideUp('fast');
			jQuery("#menuDeroulant > li").css('backgroundColor','');
			return false; 
		});
	});
});
