//------------------ Affichage calque livraison ---------------
function ShowForm(div,amount,title){
  var Obj;
  //-- on affiche le fond
  Obj = document.getElementById('D_FOND');
  if( Obj){
    with( Obj.style){
      position="absolute";
      display="";
      left = "0px";
      top  = "0px";
      zIndex= 10;
    }
  }
  //-- on affiche le div
  Obj = document.getElementById(div);
  if( Obj){
    with( Obj.style){
      position="absolute";
      display="";
      marginLeft="auto";
      marginRight="auto";
//      left = "600px";
      top  = "200px";
      zIndex= 11;
    }
//	document.getElementById(div + 'price').innerHTML = amount + '€';
//	document.getElementById(div + 'title').innerHTML = title;
    Obj.focus();
  }
}
//-----------------
function HideForm(div){
  var Obj;
  Obj = document.getElementById(div);
  //-- on masque le div
  if( Obj){
    with( Obj.style){
      display="none";
    }
  }
  //-- on masque le fond  
  Obj = document.getElementById('D_FOND');
  if( Obj){
    with( Obj.style){
      display="none";
    }
  }
}

// image zoom
    $(function() {
        var options =
                {
                   zoomWidth: 300,
                    zoomHeight: 200,
                    showEffect:'show',
                    hideEffect:'fadeout',
                    fadeoutSpeed: 'slow',
			        title: false
                }
        $(".jqzoom").jqzoom(options);
        $('a.zoom').lightBox(); // Select tous les liens qui ont une classe zoom
    });
