(function($){
   $.fn.switcheroo = function(els){
      this.each(function(){
         var p = $(this);
         $(els||'li', p).click(function(){
            $('.current_page_item', p).removeClass('current_page_item');
            $(this).addClass('current_page_item');
         });
      });
   }
}(jQuery));

$(function(){
$('ul').switcheroo();
$('ul').switcheroo('li');
});
