
overColor = "#D67D66";

function navOver ( myDomID ) {
	myDomID.style.backgroundColor=overColor;
	myDomID.style.cursor = 'pointer';
	return true;
}

function navOut ( myDomID ) {
	myDomID.style.backgroundColor='transparent';
	myDomID.style.cursor = 'auto';
	return true;
}


function goToURL( targetURL ) { 
	window.location = targetURL;
}
		
		