var CurrentProduct = 'Overview';

function SwapProducts (ThisProduct) {
	
	//alert ('running SwapProducts( ' + ThisProduct + ')...');
	
	document.getElementById ('Products' + CurrentProduct).style.display = 'none';
	
	document.getElementById ('Products' + ThisProduct).style.display = 'block';
	
	if (CurrentProduct != 'Overview') {
		
		document.getElementById ('ProductsNav' + CurrentProduct).style.textDecoration = 'none';
		
	}
	
	if (ThisProduct != 'Overview') {
		
		document.getElementById ('ProductsNav' + ThisProduct).style.textDecoration = 'underline';
		
	}
	
	CurrentProduct = ThisProduct;
	
	EqualizeWells ();
	
}
