function GetStarted(a) 
{
    CloseTables();
	OpenViewingTableIcon1(a);
}

//************************************************************
function OpenViewingTableIcon1(a) 
{
   if(document.getElementById(a).style.visibility == "visible")
   {
    document.getElementById(a).style.visibility = "visible";
   }
   else 
   {
    CloseTables();
    document.getElementById(a).style.visibility = "visible";
   }
}

function CloseViewingTable(b)
{
    document.getElementById(b).style.visibility = "hidden";
}
//************************************************************

function CloseTables() 
{
	CloseViewingTable("MainTable");
	CloseViewingTable("AntidoteTable");
	CloseViewingTable("Collections");
	CloseViewingTable("THTable");
	CloseViewingTable("MusicTable");
	CloseViewingTable("HeritageTable");
	CloseViewingTable("StJohnsTable");
	CloseViewingTable("SingSongTable");
	CloseViewingTable("NeatPlacesTable");
	CloseViewingTable("RecipesTable");
	CloseViewingTable("PhotosTable");
	CloseViewingTable("PubsTable");
	CloseViewingTable("chris");
	CloseViewingTable("jason");
	CloseViewingTable("resettlement");
	CloseViewingTable("ContactTable");
}

