//*****************************************************************
//
// Arquivo ..........: FOOTLIB.JS
// Contem ...........: funcoes de imagens (inserção no rodapé)
// Site .............: www.tubeamps.com.br
// Autor ............: Manolo
// Ultima atualizacao: 06/10/2008
//
//*****************************************************************

// Bloco para imagem JPG animada, com direito a HREFs diferentes
  
var x = 1;
nhref = new Array();
ntitl = new Array();

nhref [1] = "fullerton.htm";
nhref [2] = "plexi.htm";
nhref [3] = "thunder.htm";

ntitl [1] = "Conheça o Fullerton";
ntitl [2] = "Plexi, o clássico do Rock";
ntitl [3] = "Conheça o mais novo lançamento da Tubeamps: THUNDER";

function aniheart()
   {
   window.status = ntitl[x];
   z = unescape("imagens/home_heart" + x + ".jpg")
   anim.src = z
   link.href  = nhref[x];
   link.title = ntitl[x];
   anim.refresh
   link.refresh
   window.status = ntitl[x];
   x++;
   if (x > 3)
      x = 1;
   //alert(link.href)
   setTimeout("aniheart()",4000)
   }
aniheart();
