// Initialize sIFR
if (typeof sIFR == "function"){
  sIFR.replaceElement(".home #content h2", named({sFlashSrc: "/images/fonts/heaveneticacond4.swf", sColor: "#454545", sWmode: "transparent"}))
  sIFR.replaceElement("#content h2.sifr", named({sFlashSrc: "/images/fonts/heaveneticacond5.swf", sColor: "#A90800", sWmode: "transparent"}))
  sIFR.replaceElement("#content h3.sifr", named({sFlashSrc: "/images/fonts/heaveneticacond5.swf", sColor: "#454545", sWmode: "transparent"}))
  sIFR.replaceElement("#intro h1.sifr", named({sFlashSrc: "/images/fonts/heaveneticacond5.swf", sColor: "#ffffff", sWmode: "transparent"}))
  sIFR.replaceElement("#intro p.sifr", named({sFlashSrc: "/images/fonts/heaveneticacond5.swf", sColor: "#E8A49C", sWmode: "transparent"}))
  sIFR.replaceElement("#sidebar h2", named({sFlashSrc: "/images/fonts/heaveneticacond5.swf", sColor: "#666666", sWmode: "transparent"}))
  sIFR.replaceElement("h2.grey", named({sFlashSrc: "/images/fonts/heaveneticacond5.swf", sColor: "#666666", sWmode: "transparent"}))
}

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);