// JavaScript Document
function fnNavMouseChangejs(objID, ioOpt)
{
	myObj = document.getElementById(objID);
	
	switch(ioOpt)
	{
		case 1: myObj.style.cursor = "pointer";
				myObj.style.color = "#A40000";
				myObj.style.backgroundColor = "#99CCFF"; //change colour to light blue
		break;
		case 2: myObj.style.cursor = "default";
				myObj.style.color = "#336600";
				myObj.style.backgroundColor = "white";
		break;
	}
	
}

function getDetails(objID2)
{
	for(i=1; i <= 4; i++)
	{
		document.getElementById('details'+ i).style.visibility = 'hidden';
	}
	document.getElementById(objID2).style.visibility = 'visible';
}

function setLoc(myVar, myLoc)
{
	myNewLocation = myLoc + "?LinkType=" + myVar;
	document.location = myNewLocation;
}