<!--// 

// version 1.0
// Fred Smith
// Division of Electronic Health Marketing
// National Center for Health Marketing
// Centers for Disease Control and Prevetion

var curTabID = '1'

// default tab

function switchTab(newTabID)
{
	// hide current content/tab
	document.getElementById('tab'+curTabID).className = 'tab'
	document.getElementById('content'+curTabID).className = 'hide'

	// display new content/tab
	document.getElementById('tab'+newTabID).className = 'selected'
	document.getElementById('content'+newTabID).className = 'tabcontent'
	
	// set current tab to new tab ID
	curTabID = newTabID
	//alert (curTabID)
}


-->
