// NORMAL RULES

$(document).ready(function() {
	$("ul#navigation li a strong").css("opacity","0");
	//if ($.browser.msie && $.browser.version.substring(0,1) === '6') {
	//	$("#container").css("display","block");
	//}
	
	//else{
	//	$("#container").fadeIn(1000)
	//	$("a").click(function(){
	//		if($(this).attr('target') == "_blank") {
	//		}
	//		else if($(this).hasClass('fancy_box')) {
	//		}
	//		else { 
	//			$("#container").fadeOut(1000);
	//		}
	//	});
	//}
	$("ul#navigation li a strong").hover(function () {
		$(this).stop().animate({
			opacity: 1
		}, 1000);
	},
	function () {
		$(this).stop().animate({
			opacity: 0
		}, 1000);
	});
	
});

