/* scripts */

function navOn(id){
	var obj = findObject(id);
	obj.style.setExpression("backgroundColor", "'#f8f9f9'");
}

function navOff(id){
	var obj = findObject(id);
	obj.style.setExpression("backgroundColor", "'white'");
}

function openOffsiteLink(theURL){
	window.open(theURL);
}
