 
$().ready(function() {
  $('.box img').css('opacity', 1.0);
  $('.box img').each(function() {
    $(this).hover(function() {
    	$(this).stop().animate({ opacity: 0.6 }, 300);
    },
    function() {
    	$(this).stop().animate({ opacity: 1.0 }, 300);
    });
  });
});  

