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

