/*MAINMENU ITEMS*/
if (document.images){
    //precache all 'off' button images
    var offImgArray=new Array();
    offImgArray	["home"]             =new Image (194,35);
    offImgArray	["overdezee"]        =new Image (194,35);
    offImgArray	["aurareading"]      =new Image (194,35);
    offImgArray	["coaching"]         =new Image (194,35);
    offImgArray	["mediumconsult"]    =new Image (194,35);
    offImgArray	["healing"]          =new Image (194,35);
    //off image array -- set 'off' image path for each button
    offImgArray	["home"].src         ="img/design/home1.gif";
    offImgArray	["overdezee"].src    ="img/design/overdezee1.gif";
    offImgArray	["aurareading"].src  ="img/design/aurareading1.gif";
    offImgArray	["coaching"].src     ="img/design/coaching1.gif";
    offImgArray	["mediumconsult"].src="img/design/mediumconsult1.gif";
    offImgArray	["healing"].src      ="img/design/healing1.gif";
    //precache all 'on' button images
    var onImgArray=new Array();
    onImgArray	["home"]             =new Image (194,35);
    onImgArray	["overdezee"]        =new Image (194,35);
    onImgArray	["aurareading"]      =new Image (194,35);
    onImgArray	["coaching"]         =new Image (194,35);
    onImgArray	["mediumconsult"]    =new Image (194,35);
    onImgArray	["healing"]          =new Image (194,35);
    //on image array -- set 'on' image path for each button
    onImgArray	["home"].src         ="img/design/home2.gif";
    onImgArray	["overdezee"].src    ="img/design/overdezee2.gif";
    onImgArray	["aurareading"].src  ="img/design/aurareading2.gif";
    onImgArray	["coaching"].src     ="img/design/coaching2.gif";
    onImgArray	["mediumconsult"].src="img/design/mediumconsult2.gif";
    onImgArray	["healing"].src      ="img/design/healing2.gif";
}
function imageOn(imgName){if(document.images){document.images[imgName].src=onImgArray[imgName].src;}}
function imageOff(imgName){if(document.images){document.images[imgName].src=offImgArray[imgName].src;}}
function confirmSubmit(){if(confirm('Klik op OK om het bestelformulier te verzenden.')){return true;}else{return false;}}
function scrollbarColor(){document.getElementById('container').style.scrollbarBaseColor="#008A9B";}
function disableButtons(){
    document.getElementById('submit').style.visibility    ='hidden';
    document.getElementById('reset').style.visibility     ='hidden';
    document.getElementById('negmessage').style.visibility='hidden';
    document.getElementById('procestext').style.visibility='visible';
}
