var switchedId;

function tabSwitch(id) {	
	
	if(switchedId != id) {
		var tabContent = document.getElementById('tabbedcontent-'+id);
		tabContent.style.display = 'block';
		var tab = document.getElementById('tabbedtab-'+id)
		tab.className = 'tab-switched';
		if(switchedId != null) {
			var switchedContent = document.getElementById('tabbedcontent-'+switchedId);
			switchedContent.style.display = 'none';
			var switchedTab = document.getElementById('tabbedtab-'+switchedId)
			switchedTab.className = 'tab';		
		}		
		
		switchedId = id;
	}
	return false;
}

function setSwitchedTab(id) {
	switchedId = id;
	/*if(switchedId != null) {		
		var switchedContent = document.getElementById('tabbedcontent-'+switchedId);	
		if(switchedContent != null)	
			switchedContent.style.display = 'block';
		var switchedTab = document.getElementById('tabbedtab-'+switchedId);
		if(switchedTab != null)
			switchedTab.className = 'tab-switched';		
	}*/	
}
