//script to flip the items of the mainmenu of BERSER.nl

//mainmenu

introduction_on = new Image();
introduction_on.src = "img/introduction_on.gif";
introduction_off = new Image();
introduction_off.src = "img/introduction_off.gif";

newtestament_on = new Image();
newtestament_on.src  = "img/newtestament_on.gif";
newtestament_off  = new Image();
newtestament_off.src = "img/newtestament_off.gif";

order_on = new Image();
order_on.src  = "img/order_on.gif";
order_off  = new Image();
order_off.src = "img/order_off.gif";

contact_on = new Image();
contact_on.src  = "img/contact_on.gif";
contact_off  = new Image();
contact_off.src = "img/contact_off.gif";


var imgOn = new Array(introduction_on.src, newtestament_on.src, order_on.src, contact_on.src)

var imgOff = new Array(introduction_off.src, newtestament_off.src, order_off.src, contact_off.src)

function mouseOver(imgNum,arNum)
{
	document.images[imgNum].src = imgOn[arNum];
}

function mouseOff(imgNum,arNum)
{
	document.images[imgNum].src = imgOff[arNum];
}
