$(document).ready(function () {

// Hovers

$(".wsc_post_item .wsc_image_frame a img, .wsc_posts_feed .wsc_image_frame a img").hover(function () {
$(this).stop().animate({
    opacity: 0.8
}, 500);
},
function () {
    $(this).stop().animate({
        opacity: 1
    }, 500);
});


});
