jQuery(document).ready(function() {
	if(BrowserDetect.browser!="Explorer"){
		jQuery("a").hover(function() {
			jQuery(this).animate( {
				opacity : 0.5
			}, 200);
			jQuery(this).animate( {
				opacity : 1
			}, 100)
		}, function() {
			jQuery(this).animate( {
				opacity : 1
			}, 100)
		})
	}
});
