$('a').hover(function() {
	$(this).stop(true, false).animate({
		opacity: .75
	}, {
		duration: 100
	})
}, function() {
	$(this).stop(true, false).animate({
		opacity: 1
	}, {
		duration: 500
	})
});

$('a').hover(function() {
	$(this).stop(true, false).animate({
		opacity:1
	}, {
		duration:0
	})
}, function() {
	$(this).stop(true, false).animate({
		opacity:1
	}, {
		duration:0
	})
});

