function resetLinks() {
	var divId = "";
	
  for(i = 0; i <= tabCount; i++) {
		divId = 'navpot' + i;
		
		if(document.getElementById(divId)) {
	    setClassName(divId, 'navpot');
		}
  }
}

function showCategorie(id) {
	var divId = "";
	var tabId = "";
	
	resizeLayer('contentContainer', 696, 'auto');
  thisContent = id;
	
  for(i = 0; i <= tabCount; i++) {
		tabId = "tabContent_0" + i;
		
		if(document.getElementById(tabId)) {
	    if(thisContent == i) {
	    	setVisibility(tabId, 1, 'block');
	    }
	    else {
	      setVisibility(tabId, 0, 'none');
	    }
		}
  }
	
  resetLinks();
	
	tabId = 'navpot' + id;
	if(document.getElementById(tabId)) {
	  setClassName(tabId, 'navpothigh');
	}
  setClassName('tabletop', 'tabletophigh');
	
	// track tab click
	if(confTrackingEnabled) {
   	var trackingUrl = window.location.pathname.replace(/\./g, "_tab_" + thisContent + ".");
 	  trackAbsolute(trackingUrl,'');
  }
}

function resizeContentContainer() {
	showCategorie(0);
	resizeLayer('contentContainer', 447, 'auto');
	setClassName('tabletop', 'tabletop');
	setVisibility("tabContent_00", 1, 'block');
}