// JavaScript Document

/*tdchangeColor of all the sublinks and links
color of the index page*/
function Orange (tdId, over)
{
	document.getElementById(tdId).style.backgroundColor = (over ==1)? "#FF6633" : "#f0ede4";
}

function Blue (tdId, over)
{
	document.getElementById(tdId).style.backgroundColor = (over ==1)? "#40668d" : "#e3e3e3";
}