// JavaScript Document
	var previous_id = '';
	function showmenu(id){
		if(document.getElementById('sub_menu_'+previous_id)){
			document.getElementById('sub_menu_'+previous_id).style.display = 'none';
			document.getElementById('menu_'+previous_id).style.backgroundColor = '#FFF';
			document.getElementById('menu_'+previous_id).style.color = '#604231';
		}
		if(document.getElementById('sub_menu_'+id) ){
			document.getElementById('menu_'+id).style.backgroundColor = '#604231';
			document.getElementById('menu_'+id).style.color = '#FFF';
			document.getElementById('sub_menu_'+id).style.display = 'block';
		}
		previous_id = id;
	}
	
	function loadContactUs() {
		var ContactUs = window.open('contactshow.php','','scrollbars=yes,menubar=no,height=1000,width=850,resizable=no,toolbar=no,location=no,status=no');
	}
	
	function loadMapSketch(){
		var MapSketch = window.open('map_sketch.html','','scrollbars=no,menubar=no,height=520,width=383,resizable=no,toolbar=no,location=no,status=no');
	}
