

//Menü

bild1 = new Image();
bild2 = new Image();

bild1.src = "../image/intro-farbe2.jpg";
bild2.src = "../image/intro-farbe1.jpg";

function change(idx)
{
	if ( idx == "1" ) document.images[1].src = bild1.src;
	if ( idx == "2" ) document.images[1].src = bild2.src;
}

function mchange(idx)
{
	if ( idx == "1" ) // Menüwechsel "Haus"
	{	
		window.open ("header.html?mstart=1", "head");
		window.open ("haus.html", "content");
	}
	
	if ( idx == "2" ) // Menüwechsel "lage"
	{
		window.open ("header.html?mstart=2", "head");
		window.open ("lage.html", "content");
	}
	
	if ( idx == "3" ) // Menüwechsel "belegung"
	{
		window.open ("header.html?mstart=3", "head");
		window.open ("belegung.html", "content");
	}
	
	if ( idx == "4" ) // Menüwechsel "preise"
	{
		window.open ("header.html?mstart=4", "head");
		window.open ("preise.html", "content");
	}
		
	if ( idx == "5" ) // Menüwechsel "kontakt"
	{
		window.open ("header.html?mstart=91", "head");
		window.open ("kontakt.html", "content");
	}
	
	if ( idx == "6" ) // Menüwechsel "Bildgalerie"
	{
		window.open ("header.html?mstart=92", "head");
		window.open ("92_bildgalerie.html", "content");
	}
	
	if ( idx == "7" ) // Menüwechsel "Impressum"
	{
		window.open ("header.html?mstart=93", "head");
		window.open ("impressum.html", "content");
	}
}
