// JavaScript Document fade effect

  $(document).ready(function(){
    $("img.fader").hover(function() {
      $(this).stop().animate({opacity: "0.3"}, 'slow');
    },
    function() {
      $(this).stop().animate({opacity: "1"}, 'slow');
    });
  });
