﻿var imgPathMenu = "images/menu/";
var menuMain = new Array();

menuMain[0] = new Array();
menuMain[0]["Name"] = "home";
menuMain[0]["Title"] = "home";
menuMain[0]["BildInaktiv"] = "home_inactive.gif";
menuMain[0]["BildAktiv"] = "home_active.gif";
menuMain[0]["UpperSrc"] = "html/home_upper.html";
menuMain[0]["LowerSrc"] = "html/home_lower.html";
menuMain[0]["MenuItemsSrc"] = "html/blank.html";

menuMain[1] = new Array();
menuMain[1]["Name"] = "photos";
menuMain[1]["Title"] = "photos";
menuMain[1]["BildInaktiv"] = "photos_inactive.gif";
menuMain[1]["BildAktiv"] = "photos_active.gif";
menuMain[1]["UpperSrc"] = "html/photos_upper.html";
menuMain[1]["LowerSrc"] = "html/photos_lower.html";
menuMain[1]["MenuItemsSrc"] = "html/menu_items.html";

menuMain[2] = new Array();
menuMain[2]["Name"] = "links";
menuMain[2]["Title"] = "links";
menuMain[2]["BildInaktiv"] = "links_inactive.gif";
menuMain[2]["BildAktiv"] = "links_active.gif";
menuMain[2]["MenuItemsSrc"] = "html/blank.html";

menuMain[3] = new Array();
menuMain[3]["Name"] = "contact";
menuMain[3]["Title"] = "contact";
menuMain[3]["BildInaktiv"] = "contact_inactive.gif";
menuMain[3]["BildAktiv"] = "contact_active.gif";
menuMain[3]["UpperSrc"] = "html/contact_upper.html";
menuMain[3]["LowerSrc"] = "html/contact_lower.html";
menuMain[3]["MenuItemsSrc"] = "html/blank.html";

menuMain[4] = new Array();
menuMain[4]["Name"] = "impressum";
menuMain[4]["Title"] = "impressum";
menuMain[4]["BildInaktiv"] = "impressum_inactive.gif";
menuMain[4]["BildAktiv"] = "impressum_active.gif";
menuMain[4]["MenuItemsSrc"] = "html/blank.html";




function setMenuActive(menuIndex) {
	var j;
	
	if(document.getElementById) {
		for(var i=0;i<menuMain.length;i++) {
			j = i + 1;
			document.getElementById("MenuMain_" + j).src = imgPathMenu + menuMain[i]["BildInaktiv"];
		}
		document.getElementById("MenuMain_" + menuIndex).src = imgPathMenu + menuMain[menuIndex - 1]["BildAktiv"];
		document.getElementById("ContentUpper").src = menuMain[menuIndex - 1]["UpperSrc"];
		document.getElementById("ContentLower").src = menuMain[menuIndex - 1]["LowerSrc"];
		document.getElementById("ContentMenuItems").src = menuMain[menuIndex - 1]["MenuItemsSrc"];
	}
}

function loadMenu() {
	var j;
	
	if(document.getElementById) {
		for(var i=0;i<menuMain.length;i++) {
			j = i + 1;
			document.getElementById("MenuMain_" + j).src = imgPathMenu + menuMain[i]["BildInaktiv"];
			document.getElementById("MenuMain_" + j).alt = menuMain[i]["Title"];
			document.getElementById("MenuMain_" + j).title = menuMain[i]["Title"];
		}
	}
}

