          $('#navigation a').each(function () {
            $('<div class="fader" />').css('opacity', 0).prependTo(this);
          }).hover(function () {
            $('img', this).stop().animate({
              marginLeft : 5
            }, 100);

            $('.fader', this).stop().animate({
              opacity : 0.15
            });

          }, function () {
            $('img', this).stop().animate({
              marginLeft : 10
            }, 100);

            $('.fader', this).stop().animate({
              opacity : 0
            });
          }).find('img').css('marginLeft', 10);
