/* run this on td: onmouseover="shade(this);"
onmouseover="this.style.backgroundColor='999966';" onmouseout="this.style.backgroundColor='ffffff';" 
or: onmouseover="shade(this);" onmouseout="unshade(this);" onclick="location.pathname='/';"
*/
function shade(o) {
	o.style.backgroundColor='ccccbb';
	o.style.cursor='hand';	
}

/* run this on td: onmouseout="unshade(this);" */
function unshade(o) {
	o.style.backgroundColor='ffffff';
}
