//<![CDATA[
/*This script is used to plot earthquakes on google maps. 
Author: Jon Connolly
*/

//load handlers

window.onload = function(){
	loadMap();
	getEqs();
	$("eqAll").onclick = shide;
	$("eq3").onclick = shide;
	$("eq2").onclick = shide;
	$("eq1").onclick = shide;
	$("eq0").onclick = shide;
	//the following is to reset the checkboxes on refresh(IE)
	$("eqAll").checked = true; 
	for(var i =0; i < 4; i++){
		$('eq' + i).checked = false;
	}
	getSites();

};
//]]>
