$(document).ready(function() {
	// LangSelector
	$("#ueberuns").mouseover(function () {$(this).attr("src","img/nav_ueberuns-1.gif");});   
	$("#ueberuns").mouseout(function () {$(this).attr("src","img/nav_ueberuns-0.gif");});
	 
	$("#repertoire").mouseover(function () {$(this).attr("src","img/nav_repertoire-1.gif");});   
	$("#repertoire").mouseout(function () {$(this).attr("src","img/nav_repertoire-0.gif");});
	
	$("#auftritte").mouseover(function () {$(this).attr("src","img/nav_auftritte-1.gif");});   
	$("#auftritte").mouseout(function () {$(this).attr("src","img/nav_auftritte-0.gif");});
	 
	$("#buchen").mouseover(function () {$(this).attr("src","img/nav_buchen-1.gif");});   
	$("#buchen").mouseout(function () {$(this).attr("src","img/nav_buchen-0.gif");});
	 
	$("#plus").mouseover(function () {$(this).attr("src","img/nav_plus-1.gif");});   
	$("#plus").mouseout(function () {$(this).attr("src","img/nav_plus-0.gif");});
	  
 });
 

