// Handles Click Event
function areasOnClick(){
	liObj								= this.parentNode;
	liObj.className						= (liObj.className == "on") ? "off": "on";
	return false;
}
// Show All
function areasShowAll(){
	// 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"){
				
				areasObj[a].className	= "on";
			}
		}
	}
	return false;
}
// Hide All
function areasHideAll(){
	// 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"){
				
				areasObj[a].className	= "off";
			}
		}
	}
	return false;
}