// Set Event Handles
function initAreas(){
	if (document.getElementsByTagName){
		// Get Areas Links
		areasObj						= document.getElementById("areas").getElementsByTagName("ul")[0].childNodes;
		
		// Loop Through Areas
		for (a=0; a<areasObj.length; a++){
		
			// If Node Is An Element
			if (areasObj[a].nodeType == 1){
			
				// If Node Is A List Element
				if (areasObj[a].nodeName.toLowerCase() == "li"){
					
					// Get Link Element
					aObj				= areasObj[a].getElementsByTagName("a")[0];
					
					// Set Click Event
					aObj.onclick		= areasOnClick;
				}
				
			}
		}
		
		// Get Top Links
		allObj							= document.getElementById("showall");
		noneObj							= document.getElementById("hideall");
		
		// Set Click Event
		allObj.onclick					= areasShowAll;
		noneObj.onclick					= areasHideAll;
		
	} else {
		// Legacy Browsers
		return false;
	}
}