$(function() {
$(".faderific").css("opacity","0.5");


$(".faderific").hover(function () {


$(this).stop().animate({
opacity: 1.0
}, "slow");
},


function () {

$(this).stop().animate({
opacity: 0.5
}, "slow");
});
});

