// JavaScript Document

function rollOver(id){
	document.getElementById(id).setAttribute("class","navButton navOn");
}

function rollOut(id){
	document.getElementById(id).setAttribute("class","navButton navDef");
}

function rollOutOn(id){
	document.getElementById(id).setAttribute("class","navButton navPage");
}

function gotoPage(page){
	window.location.href = page;
}

function gotoPageNew(page){
	window.open(page,'_blank');
}
