	var showContactUsInfo=true;
	var showScheduleInfo=false;
	function showContactUs() {
		hideCal();
		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 showSchedule() {
		hideCal();
		document.getElementById('contactUs').style.display = 'none';
		showContactUsInfo=false;

		if(showScheduleInfo==false) {
			document.getElementById('ourSchedule').style.display = 'block';
			showScheduleInfo=true;
		} else {
			document.getElementById('ourSchedule').style.display = 'none';
			showScheduleInfo=false;
		}
	}


