//script to flip the items of the mainmenu

ronsonhistory_on = new Image();
ronsonhistory_on.src = "../img/buttons_en/ronsonhistory_on.gif";
ronsonhistory_off = new Image();
ronsonhistory_off.src = "../img/buttons_en/ronsonhistory_off.gif";

news_on = new Image();
news_on.src = "../img/buttons_en/news_on.gif";
news_off = new Image();
news_off.src = "../img/buttons_en/news_off.gif";

tips_tricks_on = new Image();
tips_tricks_on.src = "../img/buttons_en/tips_tricks_on.gif";
tips_tricks_off = new Image();
tips_tricks_off.src = "../img/buttons_en/tips_tricks_off.gif";

collection_on = new Image();
collection_on.src = "../img/buttons_en/collection_on.gif";
collection_off = new Image();
collection_off.src = "../img/buttons_en/collection_off.gif";

service_on = new Image();
service_on.src = "../img/buttons_en/service_on.gif";
service_off = new Image();
service_off.src = "../img/buttons_en/service_off.gif";

dealers_on = new Image();
dealers_on.src = "../img/buttons_en/dealers_on.gif";
dealers_off = new Image();
dealers_off.src = "../img/buttons_en/dealers_off.gif";

contact_on = new Image();
contact_on.src = "../img/buttons_en/contact_on.gif";
contact_off = new Image();
contact_off.src = "../img/buttons_en/contact_off.gif";

var imgOn = new Array(ronsonhistory_on.src,news_on.src,tips_tricks_on.src,collection_on.src,service_on.src,dealers_on.src,contact_on.src)
var imgOff = new Array(ronsonhistory_off.src,news_off.src,tips_tricks_off.src,collection_off.src,service_off.src,dealers_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];
}
