itsKHTML = (navigator.userAgent.indexOf("KHTML") != -1);
itsIE6 = (navigator.userAgent.indexOf("MSIE 6")  != -1);
if ((itsKHTML) || (itsIE6)) {
	$(document).ready(function(){
		$("ul#race_nav li#race_nav_stages_container").each(function (i) {
			childLi = $(this).children("ul")[0];
			childA = $(this).children("a")[0];
			$(childA).bind("mouseenter", function(ev){
				$(childLi).css("display","block");
				if (itsIE6) {
					$("#content_container").css("z-index","-1");
					$("#content_container h2").css("z-index","-1");
					$(childLi).css("z-index","100");
				}
			});
			$(childLi).bind("mouseleave", function(ev){
				$(childLi).css("display","none");
				if (itsIE6) {
					$("#content_container").css("z-index","100");
					$("#content_container h2").css("z-index","100");
					$(childLi).css("z-index","-1");
				}
			});
		});
	})
}
