$(document).ready(function(){   
  $("a.zoom img,.thumbs img,.thirdsplash a,.nav a").each(function() {    
    $(this).unbind();  
    $(this).fadeTo(150,1);
    $(this).hover(function(){ $(this).fadeTo(250, 0.8); },function(){ $(this).fadeTo(150, 1); });   
  });  
});  
