/*
		Color Changing Cells Script
 */
var ie = document.all
var ns = document.layers
function inCell(cell, newcolor){
	if (ie){
		if (!cell.contains(event.fromElement)){
			cell.bgColor = newcolor;
		}
	}
}
function outCell(cell, newcolor){
	if (ie){
		if (!cell.contains(event.toElement)){
			cell.bgColor = newcolor;
		}
	}
}
