function ShowTabInfo(tab)
{
	var msg;
	switch (tab)
	{
		case 'home':
			msg='View the main page.';
			break;
		case 'tqspecials':
			msg='Save by booking these exclusive deals.';
			break;
		case 'teetimes':
			msg='Search and book tee times.';
			break;
		case 'myteequest':
			msg='Review your reservations and manage your profile.';
			break;
		case 'courses':
			msg='View current courses, their policies and locations.';
			break;
		case 'aboutus':
			msg='Find out more about TeeQuest.';
			break;					
		default:
			msg='';
	}	
	document.getElementById('tqSubTab_tabInfo1').innerHTML=msg;
}

var today=new Date();
function ResetTabInfo()
{
	document.getElementById('tqSubTab_tabInfo1').innerHTML=today.toLocaleDateString();
}
