// JavaScript Document

if (document.images)
   {
     homeon= new Image(67,43);
     homeon.src="http://www.debandrembrandt.nl/Images/homehover.png"; 
     homeoff= new Image(67,43);
     homeoff.src="http://www.debandrembrandt.nl/Images/homebutton.png";
	 
	 debandon= new Image(99,43);
     debandon.src="http://www.debandrembrandt.nl/Images/Debandhover.png"; 
     debandoff= new Image(99,43);
     debandoff.src="http://www.debandrembrandt.nl/Images/Debandbutton.png";
	 
	 videoon= new Image(70,43);
     videoon.src="http://www.debandrembrandt.nl/Images/Videohover.png"; 
     videooff= new Image(70,43);
     videooff.src="http://www.debandrembrandt.nl/Images/Videobutton.png";
	 
	 fotoalbumon= new Image(123,43);
     fotoalbumon.src="http://www.debandrembrandt.nl/Images/Fotoalbumhover.png"; 
     fotoalbumoff= new Image(123,43);
     fotoalbumoff.src="http://www.debandrembrandt.nl/Images/Fotoalbumbutton.png";
	 
	 gastboekon= new Image(141,43);
     gastboekon.src="http://www.debandrembrandt.nl/Images/Gastenboekhover.png"; 
     gastboekoff= new Image(141,43);
     gastboekoff.src="http://www.debandrembrandt.nl/Images/Gastenboekbutton.png";
	 
	 contacton= new Image(95,43);
     contacton.src="http://www.debandrembrandt.nl/Images/Contacthover.png"; 
     contactoff= new Image(95,43);
     contactoff.src="http://www.debandrembrandt.nl/Images/Contactbutton.png";
   }

function lightup(imgName)
 {
   if (document.images)
    {
      imgOn=eval(imgName + "on.src");
      document[imgName].src= imgOn;
    }
 }

function turnoff(imgName)
 {
   if (document.images)
    {
      imgOff=eval(imgName + "off.src");
      document[imgName].src= imgOff;
    }
 }

