$(document).ready(function() {

$(".table-services a.box").css("opacity", 0.7);

$(".table-services a.box").hover(function(){
	$(this).stop(true);
	$(this).animate({opacity: 1}, "fast");
},function(){
	$(this).stop(true);
	$(this).animate({opacity: 0.7}, "slow");
});

});