<!--
var theLink = new Array(12);
	theLink[0] = "default.asp";
	theLink[1] = "about.asp";
	theLink[2] = "meetings.asp";
	theLink[3] = "members.asp";
	theLink[4] = "documents.asp";
	theLink[5] = "projects.asp";
	theLink[6] = "subcommittees.asp";
	theLink[7] = "data.asp";
	//theLink[8] = "brooks_act_litigation.htm";
	theLink[9] = "funding.asp";
	theLink[10] = "help.asp";
	theLink[11] = "http://lagic.lsu.edu/";

	
var theTitle = new Array(12);
	theTitle[0] = "Click here to return to the LGISC home page";
	theTitle[1] = "Click here to learn more about the GIS Council";
	theTitle[2] = "Click here for the latest Meeting information, including the next Agenda";
	theTitle[3] = "Click here for information about Council Members";
	theTitle[4] = "Click here to access the LGISC Document Archives";
	theTitle[5] = "Click here to access information about old, current, and pending Council Activities";
	theTitle[6] = "Click to access information about various Council Subcommittees";
	theTitle[7] = "Click here for links to geographic/GIS data";
	//theTitle[8] = "Brooks Act Litigation Summary";
	theTitle[9] = "Click here for a list of Federal, GIS funding opportunities";
	theTitle[10] = "Click here for Help";
	theTitle[11] = "Visit LGISC";

	
var theItem = new Array(12)
	theItem[0] = "Home Page";
	theItem[1] = "About LGISC";
	theItem[2] = "Meeting Information";
	theItem[3] = "Member Agencies";
	theItem[4] = "Council Documents";
	theItem[5] = "Council Projects";
	theItem[6] = "Subcommittees";
	theItem[7] = "View & Download Data";
	//theItem[8] = "Brooks Act Lawsuit";
	theItem[9] = "Funding Resources";
	theItem[10] = "Help";
	theItem[11] = "Visit LAGIC";

	
var appdir = 'http://lagic.lsu.edu/lgiscweb/';
// Create Tables
document.write('<table width="98%" border="0" cellpadding="0" align="center" cellspacing="0">');
for( var i=0; i<theLink.length; i++)
	if (theLink[i]){
		document.write('  	    <tr>');
		document.write('  	      <td valign="middle">');
		document.write('		  	<table width="100%" height="26" border="0" align="center" cellpadding="0" cellspacing="0">');
		document.write('            	<tr>');
		if ((theLink[i] == 'default.htm')){
			if ((document.location == appdir+'default.htm') || (document.location == appdir) ){
				document.write('              		<td width="100%" id="Link'+i+'" class="menu"> &nbsp;<B>'+theItem[i]+'</B></td>');
			} else {
				document.write('					<td width="98%" id="Link'+i+'" class="menu_linked"><a href="'+theLink[i]+'" class="menu_linked"  id="link'+i+'" title="'+theTitle[i]+'">&nbsp;'+theItem[i]+'</a></td>');
			}
		} else {
			if (document.location == appdir+theLink[i]){
				document.write('              		<td width="100%" id="Link'+i+'" class="menu">&nbsp;<B>'+theItem[i]+'</B></td>');
			} else {
				document.write('					<td width="98%" id="Link'+i+'" class="menu_linked"><a href="'+theLink[i]+'" class="menu_linked" id="link'+i+'" title="'+theTitle[i]+'">&nbsp;'+theItem[i]+'</a></td>');
			}
		}
		document.write('            	</tr>');
		document.write('          	</table>');
		document.write('		  	</td>');
		document.write('        </tr>');
	}
	;
document.write('</table>');
//-->

