$(document).ready(function() {
	$.ajax({
		url: "/~warnet/warnet/index.php/top",
		cache: false,
		success: function(html) {
			$("#top").html(html);
			Table.Colorize();
		}
	});
});

Table={

	// Odd/even colorize tables
	Colorize: function() {
		$('tr:even').addClass('alt');
		$('tr:odd').addClass('odd');
		$('th').parent().removeClass('alt');
		$('th').parent().removeClass('odd');
	}

}

