/**
 * @author Vince
 */

$(document).ready(function(){
	
	
	// Vide les select de type text au focus
	$("input[@type=text]").focus(function(){
	this.value="";
	});
		//AutoSelect							
	$("select[@name=id_mag1]").change(function(){
		document.location="Magasins-Hifi-international-mag-" + this.value +".html";
	});	
	$("select[@name=id_guide]").change(function(){
		document.location="Bien-choisir-guiden-" + this.value +".html";
	});
	
	
}); // fin document Jquery
function CatGoToOrder(titre,cat,filtre,order)
  {
    document.location=titre +"-cat-"+cat+"-f-"+filtre+"-o-"+order+".html";
  }
;

function CatGoToFiltre(titre,cat,filtre)
  {
    document.location=titre+"-Marque-"+filtre+"-cat-"+cat+"-f-"+filtre+"-o-1.html";
  }
;