// JavaScript Document
function ctoday()
{
	var d=new Date();
	currentday=d.getDay();
	switch (currentday)
	{
		case 0:
			return document.write("Sunday<br/><br/>"+"<a href='sunday.html'>Nascar Sunday's/ Hospitality Night <br>$6 Domestic Pitchers <br>Free Pool for Hospitality Industry </a>");
			break;
		case 1:
			return document.write("Monday<br/><br/>"+"<a href='monday.html'>Mega Monday's /Hospitality Night<br>$3 Mega Domestic&nbsp;&nbsp;$4 Mega Imports<br>Free Pool for Hospitality Industry </a>");
			break;
		case 2:
			return document.write("Tuesday<br/"+"<a href='tuesday.html'> $2 Tuesday's<br>								  $2 single wells, $2 domestic drafts, $2 pool per person*, $2 bowling <br> Karaoke!!!!! <br>*Pool price is based on two players per table</a>");
			break;
		case 3:
			return document.write("Wednesday<br/><br/>"+"<a href='wednesday.html'> College Night <br>$2 Mega Domestic,$3 Mega Import, $3 Three Olives Vodka<br>Live DJ/Karaoke<br>Free Bowling from 8-10!!!!!</a>");
			break;
		case 4:
			return document.write("Thursday<br/><br/>"+"<a href='thursday.html'> Ladies Night<br>Ladies drink free!  </a>");
			break;
		case 5:
			return document.write("Friday<br><br>"+"<a href='friday.html'>Live Band</a>");
			break;
		case 6:
			return document.write("Saturday<br><br>"+"<a href='saturday.html'>Live DJ</a>");
			break;
		default:
			return document.write("Do not Match");
			
	}
}