var loaded = 0
function ready()
{
loaded = 1;	
}

// change JPGs + Loading-comment
function bild(x)
{
  if(loaded!=1)
    {
      check = confirm('Bitte warten Sie bis alle Bilder der Vorschau sichtbar sind.');
      if (check==true) location.reload();
      else loaded=1;
    }
  else
    {
      document.bild.src=('http://www.tenckhoff.com/gifs/laden.gif');
      b = x+ '.jpg';
      window.setTimeout('document.bild.src=b',1000);
    }
}


// change GIFs
function gif(x)
{
document.bild.src=(x + '.gif');
}
