sfHover = function() {
	var sfEls = document.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 Fuss() {
	document.getElementById("Fuss").innerHTML =

'<p style="text-align:center;color:white">'+
'Edith Krackowizer &nbsp; &nbsp; &nbsp; '+
' <a href="http://www.seelenraum.at/Impressum.html"><span style="color:white">Impressum</span></a>'+
'&nbsp; &nbsp; &nbsp;Anif bei Salzburg';

}
