function Stripes()
{
	try {
		var tables = document.getElementsByTagName("table");
		
		for (h = 0; h < tables.length; h++) {
			if (tables[h].className == "CallOut") {
				var tbodies = tables[h].getElementsByTagName("tbody");
				var rows = tbodies[0].getElementsByTagName("tr");

				for (var i = 0; i < rows.length; i++) {
					if (i%2 == 1) {
						rows[i].className = 'a';
					}
				}
			}
		}
	} catch(e) { }
}

if(window.addEventListener) window.addEventListener('load', Stripes, false); // gecko, safari, konqueror and standard
else if(document.addEventListener) document.addEventListener('load', Stripes, false); // opera 7
else if(window.attachEvent) { // win/ie
	window.attachEvent('onload', Stripes);
} else { // mac/ie5
	if(typeof window.onload == 'function') {
		var existing = onload;
		window.onload = function() {
			existing();
			Stripes();
		}
	} else {
		window.onload = function() {
			Stripes();
		}
	}
}
