// JavaScript Document
/*
Change Cell Backgrounds -
&copy; Shivaji Basu (www.shivbasu.com)
To add more shock to your site, visit www.DHTML Shock.com
*/

function cOn(td){
if(document.getElementById||(document.all && !(document.getElementById))){
td.style.backgroundColor="#FF6633";
}
}

function cOut(td){
if(document.getElementById||(document.all && !(document.getElementById))){
td.style.backgroundColor="#FAAF40";
}
}

function sOn(td){
if(document.getElementById||(document.all && !(document.getElementById))){
td.style.backgroundColor="#003399";
}
}

function sOut(td){
if(document.getElementById||(document.all && !(document.getElementById))){
td.style.backgroundColor="#006699";
}
}

