sfHover = function() {
	var sfEls = document.getElementById("nav").getElementsByTagName("li");
  for (var i=0; i<sfEls.length; i++) {
  	sfEls[i].onmouseover=function() {
  		this.className+=" sfhover";
  	}
  	sfEls[i].onmouseout=function() {
  		this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
  	}
  }
}
if (window.attachEvent) window.attachEvent("onload", sfHover);

function openPrint(pBaseUrl) {
	window.open(pBaseUrl+'/druck.html','Druckvorschau','width=800,height=600,scrollbars=yes');
	pForm = document.getElementById('frmPrint');
	pForm.print.value="1";
	pForm.action=this.document.location.href;
	pForm.target='Druckvorschau';
	pForm.submit();
}

function openSendFriend(pBaseUrl) {
	window.open(pBaseUrl+'/sendtofriend/?url='+this.location.href,'Druckvorschau','width=500,height=600,scrollbars=yes');
}
