<!-- hide script
/*   Each page on site should have two descriptors (variable firstMenuItem and secondMenuItem), used to determine which menu links are active. 
     The list of valid descriptors for the firstMenuItem are:
     home      			whySR
     aboutUs			contactUs
     and for secondMenuItem, descriptors are:
     customerLink		employeeLink
     fieldLink			dataLink

     There are no submenu items at the present time.

     Along with the descriptor, each page also has a variable for folder level (folderLevel)
*/


/* REMOVE dead alerts   
 alert ("value of first menu item is " + firstMenuItem + " and second menu item is " + secondMenuItem);  */
  
  if (firstMenuItem == "home")  {
     var home = "<p id=firstMenuDivOff>Home Page</p>";
  } else {
     var home = "<p id=firstMenuDiv><a id=firstMenuLink href='" + folderLevel + "index.html'>Home Page</a></p>";
  }

  if (firstMenuItem == "whySR")  {
     var whySR = "<p id=firstMenuDivOff>Why SignalRock?</p>";
  } else {
     var whySR = "<p id=firstMenuDiv><a id=firstMenuLink href='" + folderLevel + "marketing/whySR.html'>Why SignalRock?</a></p>";
  }

  if (firstMenuItem == "aboutUs")  {
     var aboutUs = "<p id=firstMenuDivOff>About Us</p>";
  } else {
     var aboutUs = "<p id=firstMenuDiv><a id=firstMenuLink href='" + folderLevel + "marketing/aboutUs.html'>About Us</a></p>";
}

  if (firstMenuItem == "contactUs")  {
     var contactUs = "<p id=firstMenuDivOff>Contact Us</p>";
  } else  {
     var contactUs = "<p id=firstMenuDiv><a id=firstMenuLink href='" + folderLevel + "marketing/contactUs.html'>Contact Us</a></p>";
  }
// first menu is:
  var firstMenu = home + whySR + aboutUs + contactUs;

  if (secondMenuItem == "customerLink")  {
     var customerLink = "<p id=secondMenuDivOff><span class=menuProductType>Customer</span><span class=menuProductLogoSymbol><</span><span class=menuProductClass>LINK</span><span class=menuProductLogoSymbol>></span></p>";
  } else  {
     var customerLink = "<p id=secondMenuDiv><a id=secondMenuLink href='" + folderLevel + "business/customerLink.html'><span class=menuProductType>Customer</span><span class=menuProductLogoSymbol><</span><span class=menuProductClass>LINK</span><span class=menuProductLogoSymbol>></span></a></p>";
   }

  if (secondMenuItem == "employeeLink")  {
     var employeeLink = "<p id=secondMenuDivOff><span class=menuProductType>Employee</span><span class=menuProductLogoSymbol><</span><span class=menuProductClass>LINK</span><span class=menuProductLogoSymbol>></span></p>";
  } else  {
     var employeeLink = "<p id=secondMenuDiv><a id=secondMenuLink href='" + folderLevel + "business/employeeLink.html'><span class=menuProductType>Employee</span><span class=menuProductLogoSymbol><</span><span class=menuProductClass>LINK</span><span class=menuProductLogoSymbol>></span></a></p>";
   }

  if (secondMenuItem == "fieldLink")  {
     var fieldLink = "<p id=secondMenuDivOff><span class=menuProductType>Field</span><span class=menuProductLogoSymbol><</span><span class=menuProductClass>LINK</span><span class=menuProductLogoSymbol>></span></p>";
  } else  {
     var fieldLink = "<p id=secondMenuDiv><a id=secondMenuLink href='" + folderLevel + "business/fieldLink.html'><span class=menuProductType>Field</span><span class=menuProductLogoSymbol><</span><span class=menuProductClass>LINK</span><span class=menuProductLogoSymbol>></span></a></p>";
   }

  if (secondMenuItem == "dataLink")  {
     var dataLink = "<p id=secondMenuDivOff><span class=menuProductType>Data</span><span class=menuProductLogoSymbol><</span><span class=menuProductClass>LINK</span><span class=menuProductLogoSymbol>></span></p>";
  } else  {
     var dataLink = "<p id=secondMenuDiv><a id=secondMenuLink href='" + folderLevel + "business/dataLink.html'><span class=menuProductType>Data</span><span class=menuProductLogoSymbol><</span><span class=menuProductClass>LINK</span><span class=menuProductLogoSymbol>></span></a></p>";
   }

  var secondMenuTitle = "<h2 id=secondMenuTitle>SignalRock</h2><h2 id=secondMenuTitle>Digital</h2><h2 id=secondMenuTitle>Products</h2>";

  var secondMenu = secondMenuTitle + customerLink + employeeLink + fieldLink + dataLink;

     //stop hiding! -->
