$(document).ready(function(){
	if($.browser.msie){
		$(document).ready(function(){
			$("a:not(.nofade)").hover(function() {
				$(this).css("text-decoration","underline");
			},
			function() {
				$(this).css("text-decoration","none");
			});
		});
	}else{
		$(document).ready(function(){
			$("a:not(.nofade)").hover(function() {
				$(this).stop().animate({opacity: "0.75"}, 'fast');
			},
			function() {
				$(this).stop().animate({opacity: "1"}, 'slow');
			});
		});
	} 
});
