(function($){  
   $.fn.rssFeed = function(options) {  
   
      options = $.extend({
             url: "", 
             max: 5  
      }, options); 
      
      return this.each(function () { 
        var proxyUrl = "getrss.ashx?url=" + options.url + "&max=" + options.max;
        $(this).load(proxyUrl);               
      });  
   };  
})(jQuery);  
