(function($) {
	 $.fn.removeFilter = function(x) {
		if ($.browser.msie) {
			  x.style.removeAttribute("filter");
		 }
	 }
})(jQuery);



(function($) {
    $.fn.extend({
        isChildOf: function( filter_string ) {
          
          var parents = $(this).parents().get();
         
          for ( j = 0; j < parents.length; j++ ) {
           if ( $(parents[j]).is(filter_string) ) {
      return true;
           }
          }
          
          return false;
        }
    });
})(jQuery);



