// Copyright: Zacke, Berlin 2003, http://www.ufocomes.de

bildX = new Array()
bildY = new Array()

function size()
{
  for (var i = 0; i < document.images.length; i++)
  {
   bildX[i] = document.images[i].width;
   bildY[i] = document.images[i].height;
  }
}

function comeBack(pic)
{
 for (var j = 0; j < document.images.length; j++)
 {
  document.images[j].width = bildX[j];
  document.images[j].height = bildY[j];
  if (document.images[j].name == "bild"+[j])
  { 
   document.images[j].style.border = "solid 2px #ffffff";
  }
 }
}

function nerv(bild)
{
 for (var k = 0; k < document.images.length; k++)
 {
  if (document.images[k].name == bild)
  { 
   document.images[k].width = 0;
   document.images[k].height = 0;
   document.images[k].style.border = 0;
   setTimeout('comeBack()',1400);
  }
 }
}

