//-- mouseNavActions.js -->

// Last Modified: 17/07/2006

//-- Begin
function changeBGcolor(mouseStatus,theObj) {
	if (mouseStatus == "over") {
		theObj.style.backgroundColor = '#eeeeee';
	}
	if (mouseStatus == "out") {
		theObj.style.backgroundColor = '#999999';
	}
}


function displayNewPage(theLink) {
	window.location = theLink;
}

