/*
  Ben Stockley Photographer - jQuery Plugins - ./_inc/js/jquery.plugins.js
  $ Revision: 1.0 Build 20100107 $
  Copyright (c) 2010 Ben Stockley Photographer. All Rights Reserved.

///////////////     Plugins     /////////////*/

  (function($) {
    $.fn.removeFilter = function() {
      this.each(function() {
        var $self = $(this);

        if ($.browser.msie) { $self.get(0).style.removeAttribute('filter'); }
      });
    }
  })(jQuery);
