/*
	JS Menu
	This simple Text based menu is for horizontal text links
	on a webpage
	
	Author: 		Larry J. Juncker Sr.
	Date:				09/06/2003
	Copyright:	All Rights Reserved - ALJ Computer Services - 2003
	Website:		http://www.aljnet.net
*/
var cgi = new Object();
      cgi.http_host = location.host;
      cgi.http_user_agent = navigator.userAgent;
      cgi.http_cookie = document.cookie;
      cgi.https = (location.protocol == 'https:\/\/') ? 'on' : 'off';
      cgi.path_info = (location.pathname.indexOf('?') != -1) ? location.pathname.substring(0, location.pathname.indexOf('?')) : location.pathname;
      cgi.query_string = (location.search) ? ((location.search.indexOf('#') != -1) ? location.search.substring(1, location.search.indexOf('#')) : location.search.substring(1)) : '';
      cgi.script_name = cgi.path_info;
      cgi.http_referer = document.referrer;

//alert(cgi.script_name);

document.write('<span class="footer">[');
//Home Link
if(cgi.script_name != "/index.htm"){
	document.write('<a href="/index.htm">Home</a>');
}else{
	document.write('Home');
}
document.write(']');
// ClubMembers link
if(cgi.script_name != "/clubMembers.cfm"){
	document.write('&nbsp;&nbsp;[<a href="clubMembers.php">Members</a>');
}else{
	document.write('&nbsp;&nbsp;[Members');
}
document.write(']');
//Join Link
if(cgi.script_name != "/join.html"){
	document.write('&nbsp;&nbsp;[<a href="/join.html">Join</a>');
}else{
	document.write('&nbsp;&nbsp;[Join');
}
document.write(']');
// Links link
if(cgi.script_name != "/links.html"){
	document.write('&nbsp;&nbsp;[<a href="/links.html">Links</a>');
}else{
	document.write('&nbsp;&nbsp;[Links');
}
/*document.write(']');
// Bus Trip Link
if(cgi.script_name != "/VIKINGS_BUS_TRIP.htm"){
	document.write('&nbsp;&nbsp;[<a href="VIKINGS_BUS_TRIP.htm">Bus Trip</a>');
}else{
	document.write('&nbsp;&nbsp;[Bus Trip');
}*/
document.write(']</span>');
