// JavaScript Document
/*<script type="text/javascript">*/
sActive = new String();

function fooOver(a_sId, a_sImage)
{
    if (a_sId != sActive) {
        window.document.getElementById(a_sId).src = a_sImage;
		
    }
}

function fooOut(a_sId, a_sImage)
{
    if (a_sId != sActive) {
        window.document.getElementById(a_sId).src = a_sImage;
    }
}

function fooClick(a_sId)
{
	
	
   if (a_sId == "home") {
       
        window.document.getElementById("home").src = "pix/homeOver.jpg";
        //window.parent.frames[a_sTarget].location = a_sFile;
		
       sActive = a_sId;
    }else{window.document.getElementById("home").src = "pix/home.jpg";
	}
	
	if (a_sId == "bio") {
       
        window.document.getElementById("bio").src = "pix/bioOver.jpg";
        //window.parent.frames[a_sTarget].location = a_sFile;

        sActive = a_sId;
    }else{window.document.getElementById("bio").src = "pix/bio.jpg";
	}
	 if (a_sId == "cd") {
       
        window.document.getElementById("cd").src = "pix/cdOver.jpg";
        //window.parent.frames[a_sTarget].location = a_sFile;

       sActive = a_sId;
    }else{window.document.getElementById("cd").src = "pix/cd.jpg";
	}
	
	if (a_sId == "termine") {
       
        window.document.getElementById("termine").src = "pix/termineOver.jpg";
        //window.parent.frames[a_sTarget].location = a_sFile;

        sActive = a_sId;
    }else{window.document.getElementById("termine").src = "pix/termine.jpg";
	}
	if (a_sId == "galerie") {
       
        window.document.getElementById("galerie").src = "pix/galerieOver.jpg";
        //window.parent.frames[a_sTarget].location = a_sFile;

        sActive = a_sId;
    }else{window.document.getElementById("galerie").src = "pix/galerie.jpg";
	}
	if (a_sId == "presse") {
       
        window.document.getElementById("presse").src = "pix/presseOver.jpg";
        //window.parent.frames[a_sTarget].location = a_sFile;

        sActive = a_sId;
    }else{window.document.getElementById("presse").src = "pix/presse.jpg";
	}
	if (a_sId == "kontakt") {
       
        window.document.getElementById("kontakt").src = "pix/kontaktOver.jpg";
        //window.parent.frames[a_sTarget].location = a_sFile;

        sActive = a_sId;
    }else{window.document.getElementById("kontakt").src = "pix/kontakt.jpg";
	}
	
	
}


function FensterOeffnen (Adresse,breite,hoehe) {
  MeinFenster = window.open(Adresse, "Zweitfenster", "height="+hoehe+", width="+breite+",left=100,top=200");
  MeinFenster.focus();
}


