/**
 * @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+"-"+filtre+"-cat-"+cat+"-f-"+filtre+"-o-1.html";
  }
;

/**MAG*/

function Open_Mag()
	{
		document.getElementById('DisplayListeMag').style.display='block';
	}
  
function Close_Mag()
	{
		document.getElementById('DisplayListeMag').style.display='none';
       	 } 

/** IMAGE*/

function Open_Image()
	{
		document.getElementById('DisplayImageGrande').style.display='block';
	}
  
function Close_Image()
	{
		document.getElementById('DisplayImageGrande').style.display='none';
       	 } 
function Open_Image2(txt)
	{	
		document.getElementById('DisplayImage2').innerHTML = '<a href="javascript:Close_Image2()" ><img src="./pics_produits/'+ txt +'_big.jpg" alt="Cliquez sur l\'image pour la fermer" title="Cliquez sur l\'image pour la fermer"/><p>Cliquez sur l image pour fermer</p></a>';
		document.getElementById('DisplayImage2').style.display='block';
		
	}
function Close_Image2()
	{
		document.getElementById('DisplayImage2').style.display='none';
       	 } 
		 
function Open_Image3()
	{	
		document.getElementById('overlay').style.display='block';
		document.getElementById('lightbox').style.display='block';
		
	}

function Close_Image3()
	{
		document.getElementById('overlay').style.display='none';
		document.getElementById('lightbox').style.display='none';
       	 } 
		 		 
