/*
  qfader
*/
(function($){

  $.fn.qfader = function(options) {
  
      var defaults = {
        duration: 200,
        opacity: 0.7
      };
    
      var options = $.extend(defaults, options);
    
    return this.each(function(){
      
      $t = $(this);
      
      $t.bind('mouseenter', function(e){
        $(this).stop(true, true).animate({opacity: options.opacity}, options.duration);
      }).bind('mouseleave', function(){
        $(this).animate({opacity: "1"}, options.duration);
      });
   
    });
    
  };
  
})(jQuery);
