// JavaScript 

$(document).ready(function() {	
	$("#left-column a img").hover(function(){
		$(this).stop().animate({"opacity": 0.5});
    }, function(){
      	$(this).stop().animate({"opacity": 1});
    });
});