// JavaScript Document
function changeToRollover(caller){
	caller.style.backgroundColor = "#787878";
	caller.style.borderTopColor = "#FDE407";
	caller.style.borderLeftColor = "#FDE407";
	caller.style.borderBottomColor = "#FDE407";
	caller.style.borderRightColor = "#FDE407";
}
function changeToRollout(caller){
	caller.style.backgroundColor = "#F7941D";
	caller.style.borderTopColor = "#F7941D";
	caller.style.borderLeftColor = "#F7941D";
	caller.style.borderRightColor = "#F7941D";
	caller.style.borderBottomColor = "#F7941D";
}
function changeButtonRollover(caller){
	caller.style.backgroundColor = "#787878";
	caller.style.borderTopColor = "#FDE407";
	caller.style.borderLeftColor = "#FDE407";
	caller.style.borderBottomColor = "#FDE407";
	caller.style.borderRightColor = "#FDE407";
}
function changeButtonRollout(caller){
	caller.style.backgroundColor = "#F7941D";
	caller.style.borderTopColor = "#F89C2D";
	caller.style.borderLeftColor = "#F89C2D";
	caller.style.borderRightColor = "#CB7A18";
	caller.style.borderBottomColor = "#CB7A18";
}
function goToURL(newURL){
	window.location.href=newURL;
}