$(function () {
    var tabContainers = $('div.tabs > div');
    tabContainers.hide().filter(':first').show();
                        
      $('div.tabs ul#nextinfo a').click(function () {
        tabContainers.hide();
        tabContainers.filter(this.hash).show();
        $('div.tabs ul#nextinfo a').removeClass('active');
        $(this).addClass('active');
        return false;
      }).filter(':first').click();
  });
