function getMenu(currPage) {
   if(parent.frames.length > 0) {
      parent.document.title = self.document.title;
   }
   
   var start = "<div id='ddcolortabs' class='droplinetabs'><ul>";
   var args = new Array(
      "<a href='news.html' title='Latest News'><span>News</span></a>",
      "<a href='aboutUs.html' title='About Us'><span>About Us</span></a>",
      "<a href='existingMembers.html' title='House of Chefs'><span>House of Chefs</span></a>",
      "<a href='cookvention.html' title='Cookventions'><span>Cookventions</span></a>",
      "<a href='trips.html' title='Trips'><span>Trips & Events</span></a>",
      "<a href='food.html' title='Miscellaneous'><span>Miscellaneous</span></a>",
      "<a href='members.html' title='Members Only Section'><span>Members Only</span></a>"
   );
   var end = "</ul></div><div id='ddcolortabsline'>&nbsp;</div>";
   var temp = "", links = "";
   
   for(var i=0; i<args.length; i++) {
      if(i+1 == currPage) {
         temp = "<li id='current'>";
      } else {
         temp = "<li>";
      }
      temp += args[i] + "</li>";
      links += temp;
   } 
   links = start + links + end;

   document.getElementById("menulink").innerHTML = links;
}