<!--

$.fn.hoverClass = function(c) {
    return this.each(function(){
        $(this).hover( 
            function() { $(this).addClass(c);  },
            function() { $(this).removeClass(c); }
        );
    });
};	

$(document).ready(function(){
    $("#nav-one li").hover(
        function(){ $("ul", this).fadeIn("fast"); }, 
        function() { } 
    );
if (document.all) {
	// Geeft errors op ie8, voorlopig check op hoveClass = null, dan voert hij niets uit
		//if($("#nav-one li").hoverClass)
		//{
			$("#nav-one li").hoverClass ("sfHover");
		//}
    }
});

  

//-->