$(function() {
		$('#sidebar img').animate({"opacity": .5});
				$('#sidebar img').hover(function() {
        	$(this).stop().animate({ "opacity": 1 });
            }, function() {
            $(this).stop().animate({ "opacity": .5 });
            });
	});
