/* -------------------------------------------------*/
var temps = 60;
var etat = 0;
var aClignote = new Array();

// fonction d'initialisaton qui recupere tous les styles 
// des classes «clignote»
// à appeler par la fonction « onload="init();" »
function init ()
{
  if (document.getElementsByTagName)
  {
  //  aClignote = retourne_classes ("remiseProduitListing11");
		
    boucle ();
  }
}

// routine exécutée en boucle qui change l'état des styles
// « visibility » entre « hidden » et « visible »
function boucle () {
  if (etat){
    //for (i = 0; i < aClignote.length; i++)
      //aClignote[i].visibility = "hidden";
			$('clignote').style.visibility = "hidden";
    etat = 0;
    temps = 200;
  } else { 
    //for (i = 0; i < aClignote.length; i++)
      //aClignote[i].visibility = "visible";
			$('clignote').style.visibility = "visible";
    etat = 1;
    temps = 900;
  }
  setTimeout("boucle()",temps);
}



