
      if( headerLevel == 1 ) {
   x = ""; }
 else if( headerLevel == 2 ) {
   x = "../"; }
 else if( headerLevel == 3 ) {
   x = "../../"; }
 else if( headerLevel == 4 ) {
   x = "../../../"; }

// Define
links = new Object();
links[0] = "index.html";
links[1] = "introduction.html";
links[2] = "investigators.html";
links[3] = "research/index.html";
links[4] = "meetings.html";
links[5] = "lag-links.html";
links[6] = "book.html";
links[7] = "contact-info.html";

names = new Object();
names[0] = "Home";
names[1] = "Introduction";
names[2] = "Virginia Key Investigators";
names[3] = "LAPCOD Research";
names[4] = "LAPCOD Meetings";
names[5] = "Lagrangian Links/Groups";
names[6] = "LAPCOD Book";
names[7] = "Contact Information";

descriptions = new Object();
descriptions[0] = "LAPCOD Home Page";
descriptions[1] = "Introduction";
descriptions[2] = "Virginia Key Investigators and Collaborators and Colleagues";
descriptions[3] = "LAPCOD Research";
descriptions[4] = "LAPCOD Meetings";
descriptions[5] = "Links to other Lagrangian Groups";
descriptions[6] = "LAPCOD Book";
descriptions[7] = "Contact Information";

// Loop 
document.writeln('<font size="-1" face="helvetica,arial,sans"><b>');
for( i = 0; i < 8; i++ ) {
//   document.writeln('<a href="',links[i],'" ');
//   document.writeln('onmouseover="window.status=',"'",descriptions[i],"'",';return true;">');

 if( headerState == names[i] ) {
   document.writeln('<font color="#000000">',names[i],'</font>');
 }
 else {
   document.writeln('<a href="',x,links[i],'">');
   document.writeln('<font color="#0000FF">',names[i],'</font></a>');
 }
 document.writeln('<br><br>');

}
document.writeln('</b></font>');


// tail
document.writeln('<p><br>');
document.writeln('<center>');
document.writeln('<img src="',x,'Jellyfish1.gif">');
document.writeln('</center>');

