	$.noConflict();
	jQuery(document).ready(function($) {
		$(".navigationMenuGauche ul.subMenu").hide();
		
		// Ouverture et fermeture au clic
		$(".navigationMenuGauche li.toggleSubMenu > a").click( function () {
			if ($(this).next("ul.subMenu:visible").length != 0) {
				$(this).next("ul.subMenu").slideUp("normal");
				
				this.title = "Cliquez pour afficher ce catalogue";
			}
			else {
				$(".navigationMenuGauche ul.subMenu").slideUp("normal");
				$(this).next("ul.subMenu").slideDown("normal");
				
				this.title = "Cliquez pour masquer ce catalogue";
			}
			return false;
		});
		
		$(".navigationMenuGauche li.toggleSubMenu > a").mouseover( function () {
			$(this).children("img").hide();
		});
		
		$(".navigationMenuGauche li.toggleSubMenu > a").mouseout( function () {
			$(this).children("img").show();
		});
	});
