/**
 * @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";
	});
	$("input[name=id_prod]").change(function(){
		document.location= this.value +"-Hifi-International.html";
	});
	
	
}); // fin document Jquery

/**
 * @author Cenk
 */


function CatGoToOrder(titre,cat,filtre,order)
  {
    document.location=titre +"-cat-"+cat+"-f-"+filtre+"-o-"+order+".html";
  }
;

function CatGoToFiltre(titre,cat,filtre)
  {
    document.location=titre+"-"+filtre+"-cat-"+cat+"-f-"+filtre+"-o-1.html";
  }
;
/**Reserver**/		 
		 
function FrontInfo(id,id2,action)
	{	
		if(action=='open'){
		document.getElementById(id2).style.display='block';
		document.getElementById(id2).style.zIndex= 6000;
		document.getElementById(id).style.display='block';
		document.getElementById(id).style.zIndex=6100;
		}
		
		if(action=='close'){	
		document.getElementById(id).style.display='none';
		document.getElementById(id2).style.display='none';
		}
		
	}
  
/**MAG*/

function Open_Mag()
	{
		document.getElementById('DisplayListeMag').style.display='block';
	}
  
function Close_Mag()
	{
		document.getElementById('DisplayListeMag').style.display='none';
       	 } 


		
