	//fille qui apparait a la commande
	jQuery(document).ready(function(){
		$('#commander a').mouseover(function () {
    		$('#commander .image1').css('visibility', 'visible');
  		});
		$('#commander a').mouseout(function () {
    		$('#commander .image1').css('visibility', 'hidden');
  		});
	});
	
	//menus qui disparaissent s'ils ne sont pas sélectionnés
	jQuery(document).ready(function(){
		$(".menu-menu3-container .sub-menu").hide();
		$(".menu-menu3-container .current-menu-parent .sub-menu").show();
		$(".menu-menu3-container .current-menu-item .sub-menu").show();
		if ($(".menu-menu3-container .sub-menu:visible").length == 0) {
			$(".menu-menu3-container .sub-menu:first").show();
		}
	});
	
	//lien en home en couleur
	jQuery(document).ready(function(){
		var pathname = window.location.pathname;
		if (pathname == "http://www.passyflore-ceramique.com" || pathname == "http://www.passyflore-ceramique.com/" || pathname == "www.passyflore-ceramique.com/" || pathname == "http://passyflore-ceramique.com/" || pathname == "http://passyflore-ceramique.com" || pathname == "/") {
			$(".menu-item-home").addClass("current-menu-item");
		}
	});

