$(document).ready(function() {
	
	$("div.cont-capsules a").hover (
		function () {
			$(this).animate({opacity: 0.7}, 200);
		},
		function () {
			$(this).animate({opacity: 1.0}, 100);
		}
    );
    
});