$(document).ready(function () {
							
  // find the img.fade elements and hook the hover event
  $('.fade').hover(function() {
    // on hovering over, find the element we want to fade *up*
    var fade = $(this);
    
    // if the element is currently being animated (to a fadeOut)...
    if (fade.is(':animated')) {
      // ...take it's current opacity back to .8
      fade.stop().fadeTo(250, .8);
    } else {
      // fade out
      fade.fadeTo(250, .8);
    }
  }, function () {
    // on hovering out, fade the element back in
    var fade = $(this);
    if (fade.is(':animated')) {
      fade.stop().fadeTo(250, 1);
    } else {
      // fade in
      fade.fadeTo(250, 1);
    }
  });
});
