(function($){
	
	var sfHover = function() {
		$("#header li").hover(
			function(e){ $(this).addClass('sfhover'); }, 
			function(e){ $(this).removeClass('sfhover'); }
		);
	};
	
	var initPage = function() {
		if (window.attachEvent) sfHover();
	};

	$(document).ready(initPage);			
	
})(jQuery);

