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

