(function() {
	var glow;
	
	if(typeof(gloader) == 'undefined') {
		return;
	}
	
	gloader.load(
	["glow", "1", "glow.dom"],
	{
		async: false,
		onLoad: function(fetchedGlow) {
			glow = fetchedGlow;
			glow.ready(init);
		}
	});
	
function init() {
	
	if (glow.dom.get("div#spl-onlstt-two").length == 0) {
		glow.dom.get("div#spl-onlstt table").each(function() {
			glow.dom.get(this).get("tr").each(function(i) {
				glow.dom.get(this).addClass(i%2 ? "spl-onlstt-evenrow" : "spl-onlstt-oddrow");
			});
		});
	} else {
		glow.dom.get("div#spl-onlstt table, div#spl-onlstt-two table").each(function() {
			glow.dom.get(this).get("tr").each(function(i) {
				glow.dom.get(this).addClass(i%2 ? "spl-onlstt-evenrow" : "spl-onlstt-oddrow");
			});
		});
	}
}

})();