function preload_images() {
	menu_aktuell_on = new Image();
	menu_aktuell_on.src = "images/aktuell_on.gif";
	menu_aktuell_off = new Image();
	menu_aktuell_off.src = "images/aktuell_off.gif";

	menu_aktuell_ani_on = new Image();
	menu_aktuell_ani_on.src = "images/aktuell_ani_on.gif";
	menu_aktuell_ani_off = new Image();
	menu_aktuell_ani_off.src = "images/aktuell_ani_off.gif";

	menu_automaten_on = new Image();
	menu_automaten_on.src = "images/automaten_on.gif";
	menu_automaten_off = new Image();
	menu_automaten_off.src = "images/automaten_off.gif";

	menu_automaten_ani_on = new Image();
	menu_automaten_ani_on.src = "images/automaten_ani_on.gif";
	menu_automaten_ani_off = new Image();
	menu_automaten_ani_off.src = "images/automaten_ani_off.gif";

	menu_sports_on = new Image();
	menu_sports_on.src = "images/sports_on.gif";
	menu_sports_off = new Image();
	menu_sports_off.src = "images/sports_off.gif";

	menu_sports_ani_on = new Image();
	menu_sports_ani_on.src = "images/sports_ani_on.gif";
	menu_sports_ani_off = new Image();
	menu_sports_ani_off.src = "images/sports_ani_off.gif";

	menu_shop_on = new Image();
	menu_shop_on.src = "images/shop_on.gif";
	menu_shop_off = new Image();
	menu_shop_off.src = "images/shop_off.gif";
	
	menu_shop_ani_on = new Image();
	menu_shop_ani_on.src = "images/shop_ani_on.gif";
	menu_shop_ani_off = new Image();
	menu_shop_ani_off.src = "images/shop_ani_off.gif";

	menu_boerse_on = new Image();
	menu_boerse_on.src = "images/boerse_on.gif";
	menu_boerse_off = new Image();
	menu_boerse_off.src = "images/boerse_off.gif";
	
	menu_boerse_ani_on = new Image();
	menu_boerse_ani_on.src = "images/boerse_ani_on.gif";
	menu_boerse_ani_off = new Image();
	menu_boerse_ani_off.src = "images/boerse_ani_off.gif";

	menu_feedback_on = new Image();
	menu_feedback_on.src = "images/feedback_on.gif";
	menu_feedback_off = new Image();
	menu_feedback_off.src = "images/feedback_off.gif";

	menu_feedback_ani_on = new Image();
	menu_feedback_ani_on.src = "images/feedback_ani_on.gif";
	menu_feedback_ani_off = new Image();
	menu_feedback_ani_off.src = "images/feedback_ani_off.gif";

	submenu_home_on = new Image();
	submenu_home_on.src = "images/home_on.gif";
	submenu_home_off = new Image();
	submenu_home_off.src = "images/home_off.gif";

	submenu_kontakt_on = new Image();
	submenu_kontakt_on.src = "images/kontakt_on.gif";
	submenu_kontakt_off = new Image();
	submenu_kontakt_off.src = "images/kontakt_off.gif";

	submenu_sitemap_on = new Image();
	submenu_sitemap_on.src = "images/sitemap_on.gif";
	submenu_sitemap_off = new Image();
	submenu_sitemap_off.src = "images/sitemap_off.gif";

	bottommenu_gastronomie_on = new Image();
	bottommenu_gastronomie_on.src = "images/gastronomie_on.gif";
	bottommenu_gastronomie_off = new Image();
	bottommenu_gastronomie_off.src = "images/gastronomie_off.gif";
}

function img_act(imgName)
{
	imgOn = eval(imgName + "_on.src");
	document[imgName].src = imgOn;
}

function img_inact(imgName)
{
	imgOff = eval(imgName + "_off.src");
	document[imgName].src = imgOff;
}

preload_images();