$(document).ready(function(){
	$('#nav01').superfish();
	
	$(".changeProduit").click(function(){
		$(".changeProduitSel").hide();
		$("#"+$(this).attr("id")+"Sel").show();
	});
	
	$(".changeProduitSel").change(function(){
		produitUrl = $('select#'+$(this).attr("id")+' option:selected').val();
		if (produitUrl != ""){
			window.location.replace(produitUrl);
		}
	});
	
	$("#inputSearch").focus(function(){
		if ($(this).val() == texte_rechercher){
			$(this).val("");
		}
	});
	
	//equalHeight
	var highest = 580;
	if ( document.getElementById( 'content' ) && document.getElementById( 'left' ) )
	{
		if ( document.getElementById( 'content' ).offsetHeight > highest )
			highest = document.getElementById( 'content' ).offsetHeight;
		
		if ( document.getElementById( 'left' ).offsetHeight > highest )
			highest = document.getElementById( 'left' ).offsetHeight;
				
		document.getElementById( 'content' ).style.height = document.getElementById( 'left' ).style.height = highest + "px";
		document.getElementById('wrapLeft').style.height = highest - 95 + "px";
	}

	

});




