//<script>

function hover_sw (id)
{
  if (document.getElementById)
  {	 document.getElementById(id).style.background = "url(css/schalter-ein.jpg)";
  	 document.getElementById(id).style.color = "#FFEBDA";
  }
}
function hout_sw (id)
{
  if (document.getElementById)
  {	 document.getElementById(id).style.background = "url(css/schalter-aus.jpg)";
  	 document.getElementById(id).style.color = "darkred";
  }
}
function hclick (url)
{
 	window.location.href = url;
}

