if (document.images) { // Active Images



newson = new Image();
newson.src = "images/menu1/news1.gif";
abouton = new Image();
abouton.src = "images/menu1/about1.gif";
initiativeson = new Image();
initiativeson.src = "images/menu1/initiatives1.gif";
contributeon = new Image();
contributeon.src = "images/menu1/contribute1.gif";
boardon = new Image();
boardon.src = "images/menu1/board1.gif";
beneon = new Image();
beneon.src = "images/menu1/bene1.gif";
galleryon = new Image();
galleryon.src = "images/menu1/gallery1.gif";
contacton = new Image();
contacton.src = "images/menu/contact1.gif";
linkon = new Image();
linkon.src = "images/menu/links1.gif";
liston = new Image();
liston.src = "images/menu/list1.gif";
homeyon = new Image();
homeyon.src = "images/menu/homey1.gif";
homeon = new Image();
homeon.src = "images/menu1/home1.gif";

newsoff = new Image();
newsoff.src = "images/menu1/news.gif";
aboutoff = new Image();
aboutoff.src = "images/menu1/about.gif";
initiativesoff = new Image();
initiativesoff.src = "images/menu1/initiatives.gif";
contributeoff = new Image();
contributeoff.src = "images/menu1/contribute.gif";
boardoff = new Image();
boardoff.src = "images/menu1/board.gif";
beneoff = new Image();
beneoff.src = "images/menu1/bene.gif";
galleryoff = new Image();
galleryoff.src = "images/menu1/gallery.gif";
contactoff = new Image();
contactoff.src = "images/menu/contact.gif";
linkoff = new Image();
linkoff.src = "images/menu/links.gif";
listoff = new Image();
listoff.src = "images/menu/list.gif";
homeyoff = new Image();
homeyoff.src = "images/menu/homey.gif";
homeoff = new Image();
homeoff.src = "images/menu1/home.gif";


}
// Function to 'activate' images.
function imgOn(imgName) {
if (document.images) {
document[imgName].src = eval(imgName + "on.src");
}
}
// Function to 'deactivate' images.
function imgOff(imgName) {
if (document.images) {
document[imgName].src = eval(imgName + "off.src");
}
}

