$(document).ready(function(){
	
	// snapshot popups stuff
	$("#map li:gt(0)").hide();
	nextSnapshot();
	
});

// logic for the snapshot popups

function nextSnapshot(){
	var curID = $("#map li:visible").attr("id");
	var regex = "[0-9]+";
	var curNum = curID.match(regex);
	var numLIs = $("#map li").length;
	if(curNum >= numLIs) curNum = 0;
	curNum++;
	$("#"+curID).hide("slow");
	
	var randomnumber=""; //Math.floor(Math.random()*100);
	
	$("#map"+curNum).find("span").html(randomnumber);
	$("#map"+curNum).show("slow");
	
	
	setTimeout(nextSnapshot,1000);
}
//
