if ($.browser.msie && (parseInt($.browser.version) < 7)) {
	//do nothing
} else {
	$(document).ready(function(){
		$("#nav-products a, #nav-athletes a").mouseenter(function(){
			$(this).siblings("div").fadeIn("fast");
			$(this).addClass('active');
		});
		$("#nav-products, #nav-athletes").mouseleave(function(){
			$(this).children("div").fadeOut("fast");
			$(this).children("a").removeClass("active");
		});		
	});
}
