/* auteur: Patrick Mottaz */
/* Date de création: 15/10/2005 */
var occupee = 0;
var vitesse = 1.2;
var Hmin = 0;
var Himg = 0;
var IdImg = "";

function afficheMoi(a, b, c, d){
  if (IdImg != "") document.images[IdImg].height = Hmin;
  Hmin = b;
  Himg = c;
  IdImg = d;
  document.images['visu'].src = 'image/amenage/'+a+'.jpg';
  document.images['visu'].height = 0;
  grandiMoi(); 
}

function grandiMoi(){
  if (document.images['visu'].height < Himg || document.images[IdImg].height > 0 ){
    if (document.images['visu'].height < Himg)	document.images['visu'].height += 4;
	if (document.images[IdImg].height > 0) document.images[IdImg].height -= 1;
	setTimeout('grandiMoi()', 1);
  }
  else occupee = 0;
}

function revient(){
  if (document.images['visu'].height > 0 || document.images[IdImg].height < Hmin ){
    if (document.images['visu'].height > 0)	document.images['visu'].height -= 8;
	if (document.images[IdImg].height < Hmin) document.images[IdImg].height += 2;
	setTimeout('revient()', 1);
  }
  else occupee = 0;
}
