<!--
function cOn(td){
if(document.getElementById||(document.all && !(document.getElementById))){
td.style.backgroundColor="#999999";
td.style.cursor="hand";
}
}

function cOnNav(td){
if(document.getElementById||(document.all && !(document.getElementById))){
td.style.backgroundColor="#CCCCCC";
td.style.cursor="hand";
}
}

function cOutMenu(td){
if(document.getElementById||(document.all && !(document.getElementById))){
td.style.backgroundColor="#CCCCCC";
td.style.cursor="default";
//td.style.backgroundColor=new_color;
}
}

function cOutDiscipline(td){
if(document.getElementById||(document.all && !(document.getElementById))){
td.style.backgroundColor="#003366";
td.style.cursor="default";
}
}
 
function cOutNav(td){
if(document.getElementById||(document.all && !(document.getElementById))){
td.style.backgroundColor="white";
td.style.cursor="default";
}
}
//-->