/*
 * ALTERNATIVE CLAIMS JAVASCRIPT FUNCTIONS
 * BY BRANDON MCKINNEY
 */


function toggleLogin(){
	var o = document.getElementById("assoclogin");
	(o.style.display == "none") ? o.style.display = "inline" : o.style.display = "none";
	//o.getElementsByTagName("input")[0].focus();
}


window.onload = function(){
	if (document.getElementById("usmap")) wireupUSMap();
	document.getElementById("assoclogin").style.display = "none";
}

