var featureTabCount=4;

function prodTabSelect(a) {
	// Determine which tab we just clicked
	tabNumber=parseInt(a.id.replace(/prodtab/,""));

	// Cycle through the tabs and turn them all off, except our clicked one
	for (i=1; i<=4; i++) {
		if (i==tabNumber) {
			a.className='tabActive';
//			a.style.color='#bf0000';
//			a.style.backgroundPosition='0px 41px';
			document.getElementById('feature'+tabNumber).style.display='block';
		} else {
			document.getElementById('prodtab'+i).className='tab';
//			document.getElementById('prodtab'+i).style.color='#0f5386';
//			document.getElementById('prodtab'+i).style.backgroundPosition='0px 0px';
			document.getElementById('feature'+i).style.display='none';
		}
	}
}
