$(function() {

// Fading Stuff

$(".feature-box").hover(
function () {
$(this).stop().animate({opacity: ".75"}, 350);
}, 
function () {
$(this).stop().animate({opacity: "1"}, 350);
}
);

});
