<!--//--><![CDATA[//><!--

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);

var $j = jQuery.noConflict();
/* older jQuery fade menu... */
/*$j(document).ready(function(){
    $j("#nav li").hover(
        function(){ $j("ul", this).fadeIn("normal"); }, 
        function() { } 
    );
    if (document.all) {
        $j("#nav li").hoverClass ("sfHover");
    }
});

$j.fn.hoverClass = function(c) {
    return this.each(function(){
        $j(this).hover( 
            function() { $j(this).addClass(c);  },
            function() { $j(this).removeClass(c); }
        );
    });
};
*/

/* Superfish menu styles */
/*$j(document).ready(function(){
		$j("ul.nav").superfish({
			hoverClass	: "sfHover",
			currentClass: "overideThisToUse", //new to v1.2a
			delay		: 500,
			animation	: {opacity:"show"},
			speed		: "normal"
		});
	});
*/
//--><!]]>
