$(document).ready(function(){
$(".entry ul li a img").css("opacity","1");
$(".entry ul li a img").hover(function () {
$(this).stop().animate({
opacity: 0.5
}, "fast");
},

function () {
$(this).stop().animate({
opacity: 1
}, "fast");
});
});
