function tdNavButton_onMouseOver(objIMG)
{
	switch (objIMG.id)
	{
		case 'imgAccounting':
			document.getElementById('imgAccountingDiamond').style.visibility = 'visible';
			document.getElementById('imgTaxationDiamond').style.visibility = 'hidden';
			document.getElementById('imgFinancialToolsDiamond').style.visibility = 'hidden';
			document.getElementById('imgSuperannuationDiamond').style.visibility = 'hidden';
			document.getElementById('divAcct').style.display = 'block';
			document.getElementById('divTax').style.display = 'none';
			document.getElementById('divFin').style.display = 'none';
			document.getElementById('divSuper').style.display = 'none';
			break;
		case 'imgTaxation':
			document.getElementById('imgAccountingDiamond').style.visibility = 'hidden';
			document.getElementById('imgTaxationDiamond').style.visibility = 'visible';
			document.getElementById('imgFinancialToolsDiamond').style.visibility = 'hidden';
			document.getElementById('imgSuperannuationDiamond').style.visibility = 'hidden';
			document.getElementById('divAcct').style.display = 'none';
			document.getElementById('divTax').style.display = 'block';
			document.getElementById('divFin').style.display = 'none';
			document.getElementById('divSuper').style.display = 'none';
			break;
		case 'imgFinancialTools':
			document.getElementById('imgAccountingDiamond').style.visibility = 'hidden';
			document.getElementById('imgTaxationDiamond').style.visibility = 'hidden';
			document.getElementById('imgFinancialToolsDiamond').style.visibility = 'visible';
			document.getElementById('imgSuperannuationDiamond').style.visibility = 'hidden';
			document.getElementById('divAcct').style.display = 'none';
			document.getElementById('divTax').style.display = 'none';
			document.getElementById('divFin').style.display = 'block';
			document.getElementById('divSuper').style.display = 'none';
			break;
		case 'imgSuperannuation':
			document.getElementById('imgAccountingDiamond').style.visibility = 'hidden';
			document.getElementById('imgTaxationDiamond').style.visibility = 'hidden';
			document.getElementById('imgFinancialToolsDiamond').style.visibility = 'hidden';
			document.getElementById('imgSuperannuationDiamond').style.visibility = 'visible';
			document.getElementById('divAcct').style.display = 'none';
			document.getElementById('divTax').style.display = 'none';
			document.getElementById('divFin').style.display = 'none';
			document.getElementById('divSuper').style.display = 'block';
			break;
	}
}
