// JavaScript Document
function contractor_location_Show(blockID) {
	  if( document.getElementById ) {
		  document.getElementById(blockID).style.display = "block";
  	}
  }
function contractor_location_Hide(blockID) {
  	if( document.getElementById ) {
  		document.getElementById(blockID).style.display = "none";
  	}
  }
layerList = new Array('hideme', 'showme');
function hire_location_Hide(listSelected) {
		for (i=0; i<layerList.length; i++) {
			contractor_location_Hide(layerList[i]);
		}
		contractor_location_Show(layerList[listSelected]);
	}	