//Actions for the top menu bar, functiosn are called from the flash mov
var siteRootPrefix = "/";


function clickHome()   {
	doLink(sectionRootPrefix);	
}

//******************** Business Section Links

function clickBusinessSec()   {
	doLink(sectionRootPrefix+"business/0Index.asp");	
}

function clickBusiness_GoodNews()   {
	doLink(sectionRootPrefix+"business/0IndexGoodNews.asp");	
}

function clickBusiness_ChamberNotes()   {
	doLink(sectionRootPrefix+"business/0IndexChamberNotes.asp");	
}

function clickBusiness_FinanceBanking()   {
	doLink(sectionRootPrefix+"business/0IndexFinanceAndBanking.asp");	
}


//******************** Community Section Links

function clickCommunitySec()   {
	doLink(sectionRootPrefix+"community/0Index.asp");	
}

function clickCommunity_LocalNews()   {
	doLink(sectionRootPrefix+"community/0IndexLocalNews.asp");	
}

function clickCommunity_CommunityOrganizations()   {
	doLink(sectionRootPrefix+"community/0IndexCommunityOrganizations.asp");	
}

function clickCommunity_YourHealth()   {
	doLink(sectionRootPrefix+"community/0IndexYourHealth.asp");	
}

function clickCommunity_YouthCommunity()   {
	doLink(sectionRootPrefix+"community/0IndexYouthCommunity.asp");	
}


//******************** Education Section Links

function clickEducationalSec()   {
	doLink(sectionRootPrefix+"education/0Index.asp");	
}

function clickEducational_Public()   {
	doLink(sectionRootPrefix+"education/0IndexPublicSchools.asp");	
}

function clickEducational_Private()   {
	doLink(sectionRootPrefix+"education/0IndexPrivateSchools.asp");	
}

function clickEducational_College()   {
	doLink(sectionRootPrefix+"education/0IndexLocalCollege.asp");	
}


//******************** Religious Section Links

function clickReligiousSec()   {
	doLink(sectionRootPrefix+"religious/0Index.asp");	
}

function clickReligious_Services()   {
	doLink(sectionRootPrefix+"religious/0IndexServices.asp");	
}

function clickReligious_HolidayServices()   {
	doLink(sectionRootPrefix+"religious/0IndexHolidayServices.asp");	
}

function clickReligious_SpecialEvents()   {
	doLink(sectionRootPrefix+"religious/0IndexSpecialEvents.asp");	
}


//******************** Cultural Section Links


function clickCulturalSec()   {
	doLink(sectionRootPrefix+"cultural/0Index.asp");	
}

function clickCultural_Events()   {
	doLink(sectionRootPrefix+"cultural/0IndexCulturalEvents.asp");	
}

function clickCultural_Senior()   {
	doLink(sectionRootPrefix+"cultural/0IndexSeniorEvents.asp");	
}

function clickCultural_Museum()   {
	doLink(sectionRootPrefix+"cultural/0IndexMuseum.asp");	
}

function clickCultural_Historic()   {
	doLink(sectionRootPrefix+"cultural/0IndexHistoricInfo.asp");	
}

function clickCultural_PublicLibrary()   {
	doLink(sectionRootPrefix+"cultural/0IndexPublicLibrary.asp");	
}

function clickCultural_Movies()   {
	doLink(sectionRootPrefix+"cultural/0IndexMovies.asp");	
}

function clickCultural_Restaurants()   {
	doLink(sectionRootPrefix+"cultural/0IndexRestaurants.asp");	
}

//******************** Calendar Section Links

function clickCalendarSec()   {
	doLink(sectionRootPrefix+"calendar/0Index.asp");	
}

//******************** Other Links

function clickLinkedSites()	{
	doLink(siteRootPrefix+"linkedsites.asp");
}


//******************** Previous Editions Links

function click_AllPreviousEditions()   {
	doLink(siteRootPrefix+"previousEditions.asp");
}

function click_PrevEdition(editionLink)   {
	doLink(siteRootPrefix+editionLink);
}


function doLink(linkto)
{
	this.location.href = linkto;
}
