var Pics;
Pics = new Array();

function PicLoad(name) {
  Pics[name] = new Array(3);
  Pics[name][0] = new Image();
  Pics[name][0].src = "menu_" + name + ".gif";
  Pics[name][1] = new Image();
  Pics[name][1].src = "menu_sel_" + name + ".gif";
}

PicLoad("home");
PicLoad("team");
PicLoad("getraenke");
PicLoad("speisen");
PicLoad("abhof");
PicLoad("gaestebuch");
PicLoad("kontakt");

Pics['netspirit'] = new Array(3);
Pics['netspirit'][0] = new Image();
Pics['netspirit'][0].src = "netspirit.gif";
Pics['netspirit'][1] = new Image();
Pics['netspirit'][1].src = "netspirit_sel.gif";

function Over(Pic) {
  document.getElementById(Pic).src = Pics[Pic][1].src;
}

function Out(Pic) {
  document.getElementById(Pic).src = Pics[Pic][0].src;
}


