<!-- 
var safari = false;
var agent = navigator.userAgent.toLowerCase();
if (agent.indexOf("safari") != -1){
document.write('<link rel="stylesheet" type="text/css" href="/css/mac/style.css" \/>');
document.write('<link rel="stylesheet" type="text/css" href="/css/mac/layout.css" \/>');
}
else{
document.write('<link rel="stylesheet" type="text/css" href="/css/style.css" \/>');
document.write('<link rel="stylesheet" type="text/css" href="/css/layout.css" \/>');
}

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);
 -->
