<!-- Begin
//preloading images and replacement source
                  
                  lmirror_stat = new Image();                      
                  lmirror_stat.src = './images/lmirror.gif';
                  
                  rmirror_stat = new Image(); 
                  rmirror_stat.src = './images/rmirror.gif';
                  
                  hood_stat = new Image(); 
                  hood_stat.src = './images/hood.jpg';
                  
                  spoiler_stat = new Image(); 
                  spoiler_stat.src = './images/spoiler.jpg';
                  
                  redarrow_stat = new Image(); 
                  redarrow_stat.src = './images/redarrow.jpg';
                  
                  abedrijf_stat = new Image(); 
                  abedrijf_stat.src = './images/abedrijf.gif';
                  
                  martin_stat = new Image(); 
                  martin_stat.src = './images/martin.gif';
                  
                  kuiper_stat = new Image(); 
                  kuiper_stat.src = './images/kuiper.gif';
                  
                  bmw_stat = new Image(); 
                  bmw_stat.src = './images/bmw.gif';
                  
                  lftlgt01_new = new Image();
                  lftlgt01_new.src = './images/lftlgt01.jpg';
                                    
                  lftlgt02_new = new Image();
                  lftlgt02_new.src = './images/lftlgt02.jpg';
                  
                  rgtlgt01_new = new Image();
                  rgtlgt01_new.src = './images/rgtlgt01.jpg';
                  
                  rgtlgt02_new = new Image();
                  rgtlgt02_new.src = './images/rgtlgt02.jpg';
                  
                  beamer_new = new Image();
                  beamer_new.src = './images/beamer.gif';
                                    
//######################COMMAND STARTERS###########                     


function top() {
MoveInAU();
}

function left() {
MoveIn1();
ALMoveIn();
}

function right() {
MoveIn2();
ARMoveIn();
}

function bottom() {
MoveInBMW();
}

//######################load up###########
var timerID;

function loadup() {
 timerID = setTimeout("top()",2000);
}

//######################autobedrijf###########
var AUtimerID;
var AUimgWidth = 4;
var AUimgHeight = 1;
var AUmaxWidth = 208;
var AUmaxHeight = 30;
var AUstepWidth = 10;
var AUstepHeight = (10 * 30) / 208;

function MoveInAU() {
  if (navigator.appName == "Netscape")
     return true;
  AUimgWidth += AUstepWidth;
  AUimgHeight += AUstepHeight;
  document.autobedrijf.width = AUimgWidth;
  document.autobedrijf.height = AUimgHeight;

  if (AUimgWidth >= AUmaxWidth) {
    left();
  } 

  if (AUimgWidth < AUmaxWidth) {
    AUtimerID = setTimeout("MoveInAU()",1);
  }
  return true;
}

// ########################movein#############
var LFTtimerID;
var LFTimgWidth = 2;
var LFTimgHeight = 1;
var LFTmaxWidth = 205;
var LFTmaxHeight = 56;
var LFTstepWidth = 6;
var LFTstepHeight = (6 * 56) / 205;

function MoveIn1() {
  if (navigator.appName == "Netscape")
     return true;
  LFTimgWidth += LFTstepWidth;
  LFTimgHeight += LFTstepHeight;
  document.zoomleft.width = LFTimgWidth;
  document.zoomleft.height = LFTimgHeight;

  if (LFTimgWidth >= LFTmaxWidth) {
    right();
  } 

  if (LFTimgWidth < LFTmaxWidth) {
    LFTtimerID = setTimeout("MoveIn1()",1);
  }
  return true;
}


var RGTtimerID;
var RGTimgWidth = 2;
var RGTimgHeight = 1;
var RGTmaxWidth = 205;
var RGTmaxHeight = 56;
var RGTstepWidth = 6;
var RGTstepHeight = (6 * 56) / 205;

function MoveIn2() {
  if (navigator.appName == "Netscape")
     return true;
  RGTimgWidth += RGTstepWidth;
  RGTimgHeight += RGTstepHeight;
  document.zoomright.width = RGTimgWidth;
  document.zoomright.height = RGTimgHeight;

 if (RGTimgWidth >= RGTmaxWidth) {
    RGTtimerID = setTimeout("bottom()",1000);
  } 

  if (RGTimgWidth < RGTmaxWidth) {
    RGTtimerID = setTimeout("MoveIn2()",1);
  }
  return true;
}

// ########################=-POSITIONER LEFT SIDE-=#############
var ALtimerID;
var ALimgWidth = 1;
var ALimgHeight = 1;
var ALmaxWidth = 5;
var ALmaxHeight = 45;
var ALstepWidth = (2 * 5) / 45;
var ALstepHeight = 2;

function ALMoveIn() {
  if (navigator.appName == "Netscape")
     return true;
  ALimgWidth += ALstepWidth;
  ALimgHeight += ALstepHeight;
  document.Lpositioner.width = ALimgWidth;
  document.Lpositioner.height = ALimgHeight;

  if (ALimgWidth >= ALmaxWidth) {
  BLMoveIn();
  } 

  if (ALimgWidth < ALmaxWidth) {
    ALtimerID = setTimeout("ALMoveIn()",1);
  }
  return true;
}

var BLtimerID;
var BLimgWidth = 5;
var BLimgHeight = 45;
var BLmaxWidth = 15;
var BLmaxHeight = 25;
var BLstepWidth = (2 * 15) / 25;
var BLstepHeight = 2;

function BLMoveIn() {
  if (navigator.appName == "Netscape")
     return true;
  BLimgWidth += BLstepWidth;
  BLimgHeight -= BLstepHeight;
  document.Lpositioner.width = BLimgWidth;
  document.Lpositioner.height = BLimgHeight;

  if (BLimgHeight > BLmaxHeight) {
    BLtimerID = setTimeout("BLMoveIn()",1);
  }
  return true;
}

// ########################=-POSITIONER RIGHT SIDE-=#############
var ARtimerID;
var ARimgWidth = 1;
var ARimgHeight = 1;
var ARmaxWidth = 5;
var ARmaxHeight = 45;
var ARstepWidth = (2 * 5) / 45;
var ARstepHeight = 2;

function ARMoveIn() {
  if (navigator.appName == "Netscape")
     return true;
  ARimgWidth += ARstepWidth;
  ARimgHeight += ARstepHeight;
  document.Rpositioner.width = ARimgWidth;
  document.Rpositioner.height = ARimgHeight;

  if (ARimgWidth >= ARmaxWidth) {
  BRMoveIn();
  } 

  if (ARimgWidth < ARmaxWidth) {
    ARtimerID = setTimeout("ARMoveIn()",1);
  }
  return true;
}

var BRtimerID;
var BRimgWidth = 5;
var BRimgHeight = 45;
var BRmaxWidth = 15;
var BRmaxHeight = 25;
var BRstepWidth = (2 * 15) / 25;
var BRstepHeight =2;

function BRMoveIn() {
  if (navigator.appName == "Netscape")
     return true;
  BRimgWidth += BRstepWidth;
  BRimgHeight -= BRstepHeight;
  document.Rpositioner.width = BRimgWidth;
  document.Rpositioner.height = BRimgHeight;

  if (BRimgHeight > BRmaxHeight) {
    BRtimerID = setTimeout("BRMoveIn()",1);
  }
  return true;
}

//###############gespecialiseerd...############
var BMWtimerID;
var BMWimgWidth = 480;
var BMWimgHeight = 39;

function MoveInBMW() {
  document.bmw.width = BMWimgWidth;
  document.bmw.height = BMWimgHeight;
  BMWtimerID = setTimeout("lightsonA()",2000);
}

//###############koplampen############
var AtimerID;
aleft = "./images/lftlgt01.jpg";
aright = "./images/rgtlgt01.jpg";

function lightsonA() {
 document.images['al'].src = aleft;
 document.images['ar'].src = aright;
 AtimerID = setTimeout("lightsonB()",1000);
}

var BtimerID;
bleft = "./images/lftlgt02.jpg";
bright = "./images/rgtlgt02.jpg";

function lightsonB() {
 document.images['al'].src = bleft;
 document.images['ar'].src = bright;
 BtimerID = setTimeout("lightsonC()",1000);
}

var CtimerID;
cleft = "./images/beamer.gif";
cright = "./images/beamer.gif";

function lightsonC() {
 document.images['bl'].src = cleft;
 document.images['br'].src = cright;
 CtimerID = setTimeout("nextpage()",1000);
}

function nextpage() {
 window.location='./entree/index.php'
}
//  End -->