var theSelectedMenu = '';

var theOnImages = new Array();

var theOffImages = new Array();



theOnImages[0] = new Image(64,21);
theOnImages[0].src = "images/home_aan.png";
theOnImages[1] = new Image(75,21);
theOnImages[1].src = "images/poezie_aan.png";
theOnImages[2] = new Image(64,24);
theOnImages[2].src = "images/beeld_aan.png";
theOnImages[3] = new Image(150,21);
theOnImages[3].src = "images/nachtwezens_aan.png";
theOnImages[4] = new Image(52,21);
theOnImages[4].src = "images/pers_aan.png";
theOnImages[5] = new Image(103,22);
theOnImages[5].src = "images/biografie_aan.png";
theOnImages[6] = new Image(125,21);
theOnImages[6].src = "images/publicaties_aan.png";


theOffImages[0] = new Image(64,21);

theOffImages[0].src = "images/home_uit.png";

theOffImages[1] = new Image(75,31);

theOffImages[1].src = "images/poezie_uit.png";

theOffImages[2] = new Image(64,24);

theOffImages[2].src = "images/beeld_uit.png";

theOffImages[3] = new Image(150,21);

theOffImages[3].src = "images/nachtwezens_uit.png";

theOffImages[4] = new Image(52,21);

theOffImages[4].src = "images/pers_uit.png";

theOffImages[5] = new Image(103,22);

theOffImages[5].src = "images/biografie_uit.png";
theOffImages[6] = new Image(125,21);

theOffImages[6].src = "images/publicaties_uit.png";




function turnOn(anImage, aNumber)

{
    
document[anImage].src = theOnImages[aNumber].src;
    
return true;

}



function turnOff(anImage, aNumber)

{
    
document[anImage].src = theOffImages[aNumber].src;
    
return true;    

}

