// JavaScript Document
/*SideBar Menu table color change
*/

function cOn(td)
{
	if(document.getElementById||(document.all && !(document.getElementById))){
	td.style.backgroundColor="#CC6600";
	}
}

function cOut(td)
{
	if(document.getElementById||(document.all && !(document.getElementById))){
	td.style.backgroundColor="#CC3300";
	}
}

function cOutW(td)
{
	if(document.getElementById||(document.all && !(document.getElementById))){
	td.style.backgroundColor="#FFFFFF";
	}
}

