/**

----------------------------------
DOCUMENT HISTORY:
----------------------------------

Created by: Ryan J. Salva
Date created: August 15, 2004
http://www.capitolmedia.com

----------------------------------
DESCRIPTION
----------------------------------

Changes the class of table cells containing the text
"EventToday" to the class of "Event".


----------------------------------
TESTED WITH:
----------------------------------
Mozilla
IE
Opera

----------------------------------
REQUIRED ASSETS: 
----------------------------------
none

----------------------------------
IMPLEMENTATION:
----------------------------------

Simply include this script in the <HEAD>
No other action required.

**/


function smallCalendar() {
	var tTableDataCells = document.getElementsByTagName("td");
	for (i=0;i<tTableDataCells.length;i++) {
		if (tTableDataCells[i].innerHTML.indexOf("EventToday") != -1) {
			tTableDataCells[i].className = "Event";
		}
	}
}

