document.images[0].width = 1;
document.images[0].height = 1;

var i = 1;
function resize()
{
  document.images[0].width = i;
  document.images[0].height = i;
  i = i + 3;
  if (i<158){setTimeout("resize()",20);}
}
