(function($)    {    
    $.fn.feed_tabs = function() {
      var tabs = this.children()
      tabs.hide();
      $(tabs[0]).show();
      $(".feed_tab").each(function() {
        var href = $(this).attr("href");
        $(this).attr("href", "javascript:void(0);");
        $(this).click(function(){
          tabs.hide();
          $(href).fadeIn("def");
        });
      });
    }
})(jQuery);