﻿// JavaScript Document

sfHover = function() {
	var sfEls = document.getElementById("NavMain").getElementsByTagName("li");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseenter=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseleave=function() {
			this.className = "";
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);



