// Stuff necessary for basic navigation/rollovers
function cOn(td){
if(document.getElementById||(document.all && !(document.getElementById))){
   td.style.backgroundColor="#A5B2DE";
   }
}

function cOut(td){
if(document.getElementById||(document.all && !(document.getElementById))){
  td.style.backgroundColor="#384981";
  }
}

function cOutSel(td){
if(document.getElementById||(document.all && !(document.getElementById))){
  td.style.backgroundColor="black";
  }
}


