(function($){$.navSwitchHandler=function(elm){$('#home-nav-items li').removeClass('active');elm.parent().addClass('active');$('#home-nav .home-nav-form').hide();$(elm.attr('href')).fadeIn('slow');};$.fn.homeNavSwitcher=function(){var startVisible=$('#home-nav-items li.active > a').attr('href');$('#home-nav .home-nav-form').hide();$(startVisible).show();return this.each(function(){$(this).click(function(e){e.preventDefault();$.navSwitchHandler($(this));return false;});});};})(jQuery);