

// change tab if "Continued..." is clicked - GJS 
$(document).ready(function(){
  $('h4.continued').click( function () {
    var thisTab = myTabs.get('activeTab');  // get the active tab (ie: this tab)
    var index = myTabs.getTabIndex(thisTab); // get the index of this tab
    myTabs.set('activeIndex', index+1 );      // set the active tab to be this tab + 1 (index value)
    });
});
