
    			
function switchTopic(tabName, tabIndex) {
	if (tabName=='alttabcontent')
		tabs = $$("#alt_tabs #alt_basic_tab li");
  else
  	tabs = $$("#nav_bar_tabs #basic_tab li");
  
  for (i = 0; i < tabs.size(); i++) {
      if (i == tabIndex) {
      		$(tabName + i).show();
          tabs[i].blur();
      } else {
          $(tabName + i).hide();
      }
  }
}
 