<!--
  
  //MENU INITIALIZATION
  var menu = new FSMenu('menu', false, 'visibility', 'visible', 'hidden');
  menu.showDelay = 0;
  menu.switchDelay = 0;
  menu.hideDelay = 500;
  menu.cssLitClass = 'highlighted';
  
  
//---------------------------------------------------
//initialization - cancel right-click

  function init ()
  {
      void(window.oncontextmenu);
      //window.ondragstart = return false;
      //window.onselectstart = return false;
      linksInNewWindow();
  }
  
  
  window.onload = init;
  
//-----------------------------------------------------
//make all offsite links open in a new window

  function linksInNewWindow ()
  {
      thisSite = document.location.hostname;
      links = document.getElementsByTagName('a');
      for (i=0; i<links.length; i++)
      {
          if (links[i].protocol == "http:" && links[i].hostname != thisSite)
          {
              links[i].target = '_blank';
          }
      }
  }
  

//---------------------------------------------------------
//goes to index page

  function home ()
  {
      window.location.href = "http://"+document.location.hostname+"/index.php"
  }
//-->