	window.onload =  function(){
		var tables = document.getElementsByTagName('table');
		
		var i=0;
		while(tables[i])
		{
			var table = tables[i];
			if(table.className == "alternate")
			{
				var rows = table.getElementsByTagName('tr');
				var p=0;
				while(rows[p])
				{
					if (p % 2) {
						rows[p].style.backgroundColor = '#ececec';
						rows[p].style.color = '#000';
					}
					else {
						rows[p].style.backgroundColor = '#f5f5f5';
						rows[p].style.color = '#000';
					}
					p++;
				}
			}
			i++;
		}
		
	
	};