
var paths = new Array("/index.htm", 
"/pastors.htm", 
"/worship.htm", 
"http://www.MyChurchEvents.com/calendar/calendar.aspx?ci=G1O9L6M7O9F0N8", 
"/DirectionsMap.htm", 
"/WeeklyTidings.pdf", 
"/MonthlyTidingsIndex.htm", 
"/SmallGroupsHome.htm", 
"/music.htm", 
"/PreschoolHome.htm", 
"/ChildrenPreK-6thGrade-Home.htm",
"/Youth6th-12thGrade-Home.htm", 
"/education.htm", 
"/SchedulesForms.htm", 
"/specialprovisions.htm", 
"/history.htm", 
"/meditationgarden.htm", 
"/towersymbols.htm", 
"/contacts.htm")
var pagename = new Array("Welcome to Trinity", "Our Pastors", 
"Worship Services", "Calendar of Events", "Directions and Map", 
"Weekly Newsletter", "Monthly Newsletter", "Small Group Ministry",
"Music Ministry", "Licensed Preschool", "Children PreK-6th", "Youth 6th-12th",
"Adult Education", "Schedules and Forms", "Special Provisions",
"Our History", "Meditation Garden", "Tower Symbols",
"Contact Us");

currPath = location.pathname;

//document.write('<p>' + currPath + '</p>');

if (currPath.length <= 1) {currPath = "index.htm"}

for (x = 0; x < paths.length; x++) {
	if (currPath.indexOf(paths[x]) < 0)	{
	    document.write('<p align="left"><b><font face="Times New Roman, Times, serif" size="3">');	
	    document.write('<a href="'+paths[x]+'"  target="_top">');
		document.write(pagename[x] + '</a></font></b></p>');
	}else{	
		document.write('<p align="left"><font face="Times New Roman, Times, serif" size="4">'+pagename[x]+'</font></p>');
	}
}
