rooturl = "/";

home_on = new Image();
home_on.src = rooturl + "images/Menu/Home_on.gif";
home_off = new Image();
home_off.src = rooturl + "images/Menu/Home_off.gif";

forum_on = new Image();
forum_on.src = rooturl + "images/Menu/Forum_on.gif";
forum_off = new Image();
forum_off.src = rooturl + "images/Menu/Forum_off.gif";

shop_on = new Image();
shop_on.src = rooturl + "images/Menu/Shop_on.gif";
shop_off = new Image();
shop_off.src = rooturl + "images/Menu/Shop_off.gif";

diary_on = new Image();
diary_on.src = rooturl + "images/Menu/Diary_on.gif";
diary_off = new Image();
diary_off.src = rooturl + "images/Menu/Diary_off.gif";

photojournal_on = new Image();
photojournal_on.src = rooturl + "images/Menu/PhotoJournal_on.gif";
photojournal_off = new Image();
photojournal_off.src = rooturl + "images/Menu/PhotoJournal_off.gif";

biography_on = new Image();
biography_on.src = rooturl + "images/Menu/Biography_on.gif";
biography_off = new Image();
biography_off.src = rooturl + "images/Menu/Biography_off.gif";

contact_on = new Image();
contact_on.src = rooturl + "images/Menu/Contact_on.gif";
contact_off = new Image();
contact_off.src = rooturl + "images/Menu/Contact_off.gif";

multimedia_on = new Image();
multimedia_on.src = rooturl + "images/Menu/Multimedia_on.gif";
multimedia_off = new Image();
multimedia_off.src = rooturl + "images/Menu/Multimedia_off.gif";

function swap(imgID,imgName) {
  if (document.images) {
    document.images[imgID].src = eval(imgName + ".src");
  }
}