if(document.all&&navigator.userAgent.indexOf('Opera')==-1)
  document.write('<link href="/Templates/normalside_m_top1/Moe-Jensen_layout_IE.css" rel="stylesheet" type="text/css">');
else if(document.all&&navigator.userAgent.indexOf('Opera')>-1)
  document.write('<link href="/Templates/normalside_m_top1/Moe-Jensen_layout_Opera.css" rel="stylesheet" type="text/css">');
else
  document.write('<link href="/Templates/normalside_m_top1/Moe-Jensen_layout_NS.css" rel="stylesheet" type="text/css">');

// Printer venlig version
function printContent() {
	var sContent = '<html><head><link href="/Templates/normalside_m_top1/Moe-Jensen_print.css" type="text/css rel=stylesheet" /></head><body><table><tr><td valign=top>'+document.getElementById('content').innerHTML+'</td></table></body></html>';
	var printwindow=window.open("","","toolbar=no,location=no,directories=yes,menubar=yes,scrollbars=yes,resizable=yes,width=640,height=480,screenX=200,screenY=50");
	printwindow.document.open();
	printwindow.document.write(sContent);
	printwindow.document.close();
	printwindow.focus();
	printwindow.print();
}

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);
