// User Interactivity
function onRollOver(whichDiv)
{
	whichDiv.style.backgroundColor = "#CBDB2A";
	document.getElementById(localPage).style.backgroundColor = "#CBDB2A";
}
function onRollOut(whichDiv)
{
	whichDiv.style.backgroundColor = "#FFFFFF";
	document.getElementById(localPage).style.backgroundColor = "#CBDB2A";
}
