if(navigator.userAgent.indexOf("MSIE 6") != -1){
	$(document).ready(function(){
		$("#globalMenu li").hover(
			function(){ $("ul", this).fadeIn("fast"); }, 
			function() { } 
		);
		if (document.all) {
			$("#globalMenu li").hoverClass ("sfHover");
		}
	});
	
	$.fn.hoverClass = function(c) {
		return this.each(function(){
			$(this).hover( 
				function() { $(this).addClass(c);  },
				function() { $(this).removeClass(c); }
			);
		});
	};	
	/* 
	Code Highlighting 
	Courtesy of Dean Edwards star-light 
	http://dean.edwards.name/my/behaviors/#star-light.htc
		- with jQuery methods added, of course
	*/
}