function stripeTable(tableId)
		{
			// Get a reference to the table.
			var theTable = document.getElementById(tableId);
			if (theTable)
			{
				// Get all table rows inside the passed table.
				var tableRows = theTable.getElementsByTagName('tr');

				for (var i = 0; i < tableRows.length; i++)
				{		
					// If its an alternating row, set the alternating class
					if ((i % 2) == 0)
						{	
						tableRows[i].className += " alt";
				        }
					// These two events are mostly for old browsers (IE6 specifically) that cannot handle using CSS Hover on elements other than the anchor tag.
					tableRows[i].onmouseover = function () 
					{ 
						this.oldClassName = this.className;
						this.className += " over"; 
					};
					tableRows[i].onmouseout = function () { this.className = this.oldClassName; };
				}
				return true;
			}
			else
			{
				return false;
			}
		
		
		}
		
		window.onload = function() {
	stripeTable('myTable');
}