$(function() {
	//evenly paint the tables, and then give everything numbers
	$("table.stats").each(function() {
		$(this).find("tr:odd").css("background-color","#ffe3e3");
		$(this).find("tr td:even").each(function(i) {
			$(this).prepend(++i + ". ");
		});
	});
		
	var indexHeading = ["about.html","latest_news.html","recent_updates.html","upcoming.html"];
	
	$("#content .cLeft .header .content a").each(function(i) {
		$(this).click(function() {
			$("#content .cLeft .header .content a.active").removeClass("active");
			$(this).addClass("active");
			$("#content .cLeft .body").html('Loading your requested page... please wait.');
			$("#content .cLeft .body").load("ajax/pages/" + indexHeading[i]);
		});
	});
	
	if (readCookie("statsReturner") != "exit") {
		createCookie("statsReturner","exit",90);
		$("#ajax_about").click();
	} else {
		$("#ajax_latest_news").click();	
	}
});
