// JavaScript Document
function HoursAndLocations()
{
	this.Open = function()
	{
		document.getElementById('hoursAndLocations').style.visibility = 'visible';
		this.CloseTheMap();
	}
	this.Close = function()
	{
		document.getElementById('hoursAndLocations').style.visibility = 'hidden';
		this.CloseTheMap();
	}
	this.ShowTheMAP = function()
	{
		document.getElementById('googleMapLocation').style.visibility = 'visible';
	}
	this.CloseTheMap = function()
	{
		document.getElementById('googleMapLocation').style.visibility = 'hidden';
	}
}
var HAL = new HoursAndLocations();
