//
//	Hommage à Hedy Lamarr
//	JavaScript Menüleiste
//	(c) 1998 Tobi Sch&auml;fer
//	piefke3000@vienna.at
//

aName = new Array ("story", "erfindung", "filme", "installation", "splitter", "stern");
var aHilite = new Array ();
var doAll = (document.all != null);
var doLayer = (document.layers != null);

// PRELOAD
for (i = 0; i < 6; i++) {
	aHilite[i] = new Image ();
	aHilite[i].src = "img/m1_" + aName[i] + ".gif";
	eval ("var " + aName[i] + " = new Object ();");
}

function hilite (id) {
	var imgObj = eval ("frames[0].document." + id + "Img");
	imgObj.src = "img/m1_" + id + ".gif";
}

function reset (id) {
	var imgObj = eval ("frames[0].document." + id + "Img"); //getImgObj (nr);
	imgObj.src = "img/m0_" + id + ".gif";
}

function hide (id){
	if (frames[1].document.images[1].name != "footer")
		frames[1].location.href = id + "_default.html";
}

function jump (section, page) {
	frames[0].location.href = section + "_header.html";
	frames[1].location.href = section + "_default.html";
	frames[2].location.href = page;
}

function nothing () { }