<!-- start hiding 
	function showlayer1(){
		toggleVis('layer5');	//hide to be shown only when javascript is disabled, normal 'show'
		toggleVis('layer1'); 	//show 
	}
	function noPhotos(){
		toggleVis('layer5');	//hide to be shown only when javascript is disabled, normal 'show'
		toggleVis('layer1');  	//show
		toggleVis('layer2');	//show
		toggleVis('layer6');	//show
		}
	function loadall(){ 
		toggleVis('layer1');  	//hide
		toggleVis('layer2');	//show (hide if no photos)
		if(document.getElementById('parentDiv')){
			toggleVis('parentDiv');	//show 
		}
	}
	function timelayer(){//shown only when javascript is disabled, normal 'hide'
		toggleVis('time');	
		toggleVis('tempature');
	}
	function largephoto_new(num){
		toggleVis('parentDiv');	//hide
		//toggleVis('layer3');	//hide
		toggleVis('layer2');	//hide
		toggleVis('layer1'); 	//show 
		document.getElementById("photo2").src = $ImageDir + extract(slide[num],1);
		document.getElementById("layer3").innerHTML = '<SPAN CLASS="blue14Text">'+ extract(slide[num],2) + '</SPAN>';
	}
	function photoloaded1(){
		toggleVis('layer1');  	//hide
		toggleVis('layer3');	//show 
		toggleVis('layer4'); 	//show
		scrollTo(0,0)
	}
	function showplanagin(){	
		toggleVis('layer4'); 	//hide
		toggleVis('layer2');	//show
		toggleVis('parentDiv');	//show 
	}
	function loadmain(){
		toggleVis('nobackbutton');	//hide 
		toggleVis('backbutton');	//show
	}
	function loadmap(){ 
		toggleVis('layer1');  	//hide
		toggleVis('layer2');	//show
	}
	function toggleVis(groupId){
		// the element that contains the area to hide/show
		if(document.getElementById(groupId)){
			toToggle = document.getElementById(groupId);
		}else {
			alert("Div ID " + groupId + "  does not exist");
			return;
		}
		// toggle the class attribute to change visibility
		currentClass = toToggle.className;
		if(currentClass == '' || currentClass == 'show'){
			toToggle.className = 'hide';
		}
		else{
			toToggle.className = 'show';
		}
	}

-->
