var seite = new Array ( "",
	"start",
	"termine",
	"vita",
	"repertoire",
	"audio",
	"presse",
	"kontakt"
	 );

var seitehtml = new Array ( "",
	"start.php",
	"termine.php",
	"vita.php",
	"repertoire.php",
	"audio.php",
	"presse.php",
	"kontakt.php"
	 );

// Bildladefunktion
    bgpic = new Array();

    for (zaehler in seite){
    bgpic[zaehler] = new Image();
    bgpic[zaehler].src = "pics/back/"+seite[zaehler]+".jpg";
    }
// Ende Bildladefunktion



function loadsite(x){
document.images['backbild'].src=bgpic[x].src;
bildaktiv(x);
inhalt.location.href="content/"+seitehtml[x];
}



function popup(x,y)
{
infofenster = window.open(x+"?id="+y,"popup","width=850,height=500,dependent=yes,menubar=no,toolbar=no,screenX=500,screenY=500,scrollbars=no,status=yes,resizable=no");
}


