function openSitemap(href, name) {
  window.open(href, name, 'width=300, height=500, scrollbars=no');
  return false;
}

function hovernav(li) {
		if (li.nextSibling && li.nextSibling.firstChild) {
			if ( li.nextSibling.firstChild.className != "selected" )  {
				li.nextSibling.firstChild.style.backgroundImage = "url(img/menu/nav/bg_next.gif)";
				li.nextSibling.firstChild.style.backgroundRepeat = "no-repeat";
				li.nextSibling.firstChild.style.backgroundPosition = "left";
			}
		}
		
		if (li.previousSibling && li.previousSibling.firstChild ) {
			if ( li.previousSibling.firstChild.className != "selected" ) {
				li.previousSibling.firstChild.style.backgroundImage = "url(img/menu/nav/bg_previous.gif)";
				li.previousSibling.firstChild.style.backgroundRepeat = "no-repeat";
				li.previousSibling.firstChild.style.backgroundPosition = "right";
			}
		}
}

function out(li) {
		if (li.nextSibling && li.nextSibling.firstChild) { 
			li.nextSibling.firstChild.style.backgroundImage = "none"; 
		}
		if (li.previousSibling && li.previousSibling.firstChild ) { 
			li.previousSibling.firstChild.style.backgroundImage = "none";	
		}
}


function FensterOeffnen (Adresse) { 
    MeinFenster = window.open(Adresse, "Zweitfenster", "width=350,height=220,left=100,top=100"); 
    MeinFenster.focus(); 
}