function shobunavbar() {

	var links = new Array();
	var sPath = window.location.pathname;	
	var sPage = sPath.substring(sPath.lastIndexOf('/') + 1);


	links['Home'] = "index.htm";
	links['Join'] = "join.htm";
	links['Sensei'] = "sensei.htm";
	links['Community'] = "community.htm";
	links['Classes'] = "selfdefense.htm";
	links['Dojo'] = "dojo.htm";
	links['Contact'] = "contact.htm"; 
	links['Calendar'] = 'calendar.php';
	links['Donate'] = "donate.htm";

	document.write('<ul class="navigation">\n');
	for (var i in links) {
	//	alert('key is: ' + i + ', value is: ' + links[i]);
		document.write('<li><a href="' + links[i] + '" class="');

		if (sPage == links[i]) {
			document.write("selected");
		}
		else {
			document.write("navigation");
		}

		document.write('">' + i + '</a></li>\n');
	}
	document.write('</ul>\n');
}

function footer() {
document.write('<a href="http://shobuaikidoboston.blogspot.com/" target="_blank" class="navigation">Blog</a> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <a href="http://www.youtube.com/user/shobuaikidoofboston" target="_blank" class="navigation">YouTube</a> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <a href="http://www.facebook.com/group.php?gid=29284542998" target="_blank" class="navigation">Facebook</a> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &copy; 2012 Shobu Aikido of Boston');
}

