// <!--

/***************************************************
****                                  GET AJAX PARAMETER                                     ***
****************************************************/	
function getParameter ( queryString, parameterName ) {
   var parameterName = parameterName + "=";
   if ( queryString.length > 0 ) {

	  begin = queryString.indexOf ( parameterName );
	  if ( begin != -1 ) {
		 begin += parameterName.length;
		 end = queryString.indexOf ( "&" , begin );
	  if ( end == -1 ) {
		 end = queryString.length
	  }
	  return unescape ( queryString.substring ( begin, end ) );
   }
   return "null";
   }
}

var jumpto = getParameter(window.location.href,"j");

if(jumpto=="staff" || jumpto=="board" || jumpto=="contact" || jumpto=="jobs" || jumpto=="supporters"){
	togglediv(jumpto);
}
if(jumpto=="maps" || jumpto=="gis" || jumpto=="spatial" || jumpto=="presentations" || jumpto=="database" || jumpto=="communications" || jumpto=="training" || jumpto=="web"){
	toggle(jumpto);
}
if(jumpto=="contact"){
	var map = new GMap2(document.getElementById("map"));
	map.checkResize();
}
//-->