	var showAboutUsInfo=false;
	var showContactUsInfo=true;
	var showPhotoInfo=false;
	var showScheduleInfo=false;

	function showAboutUs() {
		hideCal('na');
		document.getElementById('contactUs').style.display = 'none';
		showContactUsInfo=false;
		document.getElementById('photoAlbum').style.display = 'none';
		showPhotoInfo=false;
		document.getElementById('ourSchedule').style.display = 'none';
		showScheduleInfo=false;
		if(showAboutUsInfo==false) {
			document.getElementById('aboutUs').style.display = 'block';
			showAboutUsInfo=true;
		} else {
			document.getElementById('aboutUs').style.display = 'none';
			showAboutUsInfo=false;
		}
	}
	function showContactUs() {
		hideCal('na');
		document.getElementById('aboutUs').style.display = 'none';
		showAboutUsInfo=false;
		document.getElementById('photoAlbum').style.display = 'none';
		showPhotoInfo=false;
		document.getElementById('ourSchedule').style.display = 'none';
		showScheduleInfo=false;

		if(showContactUsInfo==false) {
			document.getElementById('contactUs').style.display = 'block';
			showContactUsInfo=true;
		} else {
			document.getElementById('contactUs').style.display = 'none';
			showContactUsInfo=false;
		}
	}
	
	function showPhotoAlbum() {
		hideCal('na');
		document.getElementById('aboutUs').style.display = 'none';
		showAboutUsInfo=false;
		document.getElementById('contactUs').style.display = 'none';
		showContactUsInfo=false;
		document.getElementById('ourSchedule').style.display = 'none';
		showScheduleInfo=false;

		if(showPhotoInfo==false) {
			document.getElementById('photoAlbum').style.display = 'block';
			showPhotoInfo=true;
		} else {
			document.getElementById('photoAlbum').style.display = 'none';
			showPhotoInfo=false;
		}
	}	
	function showSchedule() {
		hideCal('na');
		document.getElementById('aboutUs').style.display = 'none';
		showAboutUsInfo=false;
		document.getElementById('contactUs').style.display = 'none';
		showContactUsInfo=false;
		document.getElementById('photoAlbum').style.display = 'none';
		showPhotoInfo=false;

		if(showScheduleInfo==false) {
			document.getElementById('ourSchedule').style.display = 'block';
			showScheduleInfo=true;
		} else {
			document.getElementById('ourSchedule').style.display = 'none';
			showScheduleInfo=false;
		}
	}

