if (window.addEventListener)
{
	window.addEventListener("load", StlipedListTable, false);
}
else if (window.attachEvent)
{
	window.attachEvent("onload", StlipedListTable);
}
function StlipedListTable()
{
	var tables = document.getElementsByTagName('table');
	for (var i = 0; i < tables.length; i++)
	{
		var striped = tables[i].stliped;
		var odd = tables[i].odd;
		var even = tables[i].even;
		var tbody = tables[i].getElementsByTagName('tbody');
		if (tables[i].stliped && tbody)
		{
			var rows = tbody[0].getElementsByTagName('tr');
			for (var j = 0; j < rows.length; j++)
			{
				if ((j % 2) == 1)
				{
					if (odd) rows[j].style.backgroundColor= odd;
				}
				else
				{
					if (even) rows[j].style.backgroundColor= even;
				}
			}
		}
	}
}
