$(function() {
  $('#navigation').find('img').hover(
    function() {
      $(this).css('opacity', '0.7');
    },
    function() {
      $(this).css('opacity', '1');
    }
  );
});

