// rollover Hauptmenu

var normal = new Array(5);
var over = new Array(5);

for(var i = 0; i <= 5; i++) {
	
normal[i] = new Image();
normal[i].src = "img/menu/navinormal" + i + ".gif";

over[i] = new Image();
over[i].src = "img/menu/naviover" + i + ".gif";
}

function changeImages(id, einaus) {
	if (einaus == 1) {
window.document.images["navi" + id].src = over[id].src;
}
	else {
window.document.images["navi" + id].src = normal[id].src;
}
	}



//<img id="bild0" src="images/bildnormal0.gif" onmouseover="changeImages(0, 1)" onmouseout="changeImages(0, 0)" border="0">

//<img id="bild1" src="images/bildnormal1.gif" onmouseover="changeImages(1, 1)" onmouseout="changeImages(1, 0)" border="0">

///printpage
function printPage() {
	print(document); 
	//print(document); 
}



