function printSlogan1()
{
	document.write("\"");
	document.write(slogan1);
	document.write("\"");
}

function printSlogan2()
{
	document.write("\"");
	document.write(slogan2);
	document.write("\"");
}

function printSlogan3()
{
	document.write("\"");
	document.write(slogan3);
	document.write("\"");
}

function printSlogan4()
{
	document.write("\"");
	document.write(slogan4);
	document.write("\"");
}

function getTime(hour)
{
	if(hour == 0 || hour == 24)
		return "12AM";

	else if(hour >= 1 && hour <= 11)
	{
		var	ret="";
		ret = ret+hour+"AM";
		return ret;
	}

	else if(hour == 12)
	{
		return "12PM";
	}

	else
	{
		hour-=12;
		var	ret="";
		ret = ret+hour+"PM";
		return ret;
	}
}

function printHours()
{
	document.write("Tuesday&nbsp;&ndash;&nbsp;Friday:&nbsp;");
	document.write(getTime(monday_Thru_Friday_Opening_Hour));
	document.write("&nbsp;&ndash;&nbsp;");
	document.write(getTime(monday_Thru_Friday_Closing_Hour));
	document.write("<br>");

	document.write("Saturday&nbsp;&amp;&nbsp;Sunday:&nbsp;");
	document.write(getTime(saturday_And_Sunday_Opening_Hour));
	document.write("&nbsp;&ndash;&nbsp;");
	document.write(getTime(saturday_And_Sunday_Closing_Hour));
	document.write("<br>");
}
