$(document).ready(function() {
$('#navigation img').each(function(i){
 $(this).mouseover(function(){
  $(this).animate({opacity:0.0}, 500 );   
 }).mouseout(function(){
  $(this).animate({opacity:1.0}, 500 ); 
 })
});
});
