// JavaScript Document
<!--
function mmLoadMenus() {
  if (window.mm_menu_1105174148_0) return;
              window.mm_menu_1105174148_0 = new Menu("root",100,25,"tahoma",13,"#222926","silver","#CCCCCC","#222926","center","middle",3,0,1000,-5,7,true,true,true,2,false,false);
  mm_menu_1105174148_0.addMenuItem("<b>News</b>","location='nband.html'");
  mm_menu_1105174148_0.addMenuItem("<b>Discography</b>","location='disco.html'");
    mm_menu_1105174148_0.addMenuItem("<b>Gallery</b>","location='gall.html'");
  mm_menu_1105174148_0.addMenuItem("<b>Press</b>","location='press.html'");
  mm_menu_1105174148_0.addMenuItem("<b>Home</b>","location='index.html'");

   mm_menu_1105174148_0.hideOnMouseOut=true;
   mm_menu_1105174148_0.bgColor='#CCCCCC';
   mm_menu_1105174148_0.menuBorder=1;
   mm_menu_1105174148_0.menuLiteBgColor='#222926';
   mm_menu_1105174148_0.menuBorderBgColor='#CCCCCC';

   window.mm_menu_1105174210_0 = new Menu("root",100,25,"tahoma",13,"#222926","silver","#CCCCCC","#222926","center","middle",3,0,1000,-5,7,true,true,true,2,false,false);
  mm_menu_1105174210_0.addMenuItem("<b>MP3</b>","location='mus.html'");
  mm_menu_1105174210_0.addMenuItem("<b>Icons</b>","location='downl.html'");
  mm_menu_1105174210_0.addMenuItem("<b>Tabs/Chords</b>","location='lyr.html'");
  
  mm_menu_1105174210_0.hideOnMouseOut=true;
  mm_menu_1105174210_0.bgColor='#CCCCCC';
  mm_menu_1105174210_0.menuBorder=1;
  mm_menu_1105174210_0.menuLiteBgColor='#222926';
  mm_menu_1105174210_0.menuBorderBgColor='#CCCCCC';

  window.mm_menu_1105174248_0 = new Menu("root",100,25,"tahoma",13,"#222926","silver","#CCCCCC","#222926","center","middle",3,0,1000,-5,7,true,true,true,2,false,false);
    mm_menu_1105174248_0.addMenuItem("<b>Links</b>","location='links.html'");
  
  mm_menu_1105174248_0.hideOnMouseOut=true;
  mm_menu_1105174248_0.bgColor='#CCCCCC';
  mm_menu_1105174248_0.menuBorder=1;
  mm_menu_1105174248_0.menuLiteBgColor='#222926';
  mm_menu_1105174248_0.menuBorderBgColor='#CCCCCC';

mm_menu_1105174248_0.writeMenus();
} // mmLoadMenus()
//-->

// Copyright (c) 2002 Anahoret Team

// period of data passing to server in sec,
var period = 30;

// id of webmaster which uses this script
//-- var webmaster_id = ;

// Url for image which gets info about visitor and return one 1x1 transparent
// GIF:
var img_url = '';

// using this image all info is passed to server inside of url
var img = new Image();

// Converts days to miliseconds
/*
function days2miliseconds( days )
{
    return days * 24 * 60 * 60 * 1000;
}
*/

// returns current time to make urls unique
function getUTCTime()
{
    var d = new Date();
    var res = d.getUTCFullYear() + "/" +
              d.getUTCMonth() + "/" +
              d.getUTCDate() + " " +
              d.getUTCHours() + ":" +
              d.getUTCMinutes() + ":" +
              d.getUTCSeconds() + ":" +
              d.getUTCMilliseconds();
    return res;
}


// Sends info about
function SendStartInfo()
{
    var browser = navigator.userAgent;
    var page_url = window.location.href;
    var page_title = window.document.title;
    var referrer = window.document.referrer;
    var time = getUTCTime();
    var url = img_url +
              "action=new_page&" +
//--              "webmaster_id=" + webmaster_id + "&" +
              "visitor_user_agent=" + escape( browser ) + "&" +
              "page_url=" + escape ( page_url ) + "&" +
              "page_title=" + escape( page_title ) + "&" +
              "page_referer=" + escape( referrer ) + "&" +
              "time=" + escape( time );
    img.src = url;
}

// Sends info about the fact that this user is till on the site
function SendPresenceInfo()
{
    var time = getUTCTime();
    var url = img_url +
              "action=cur_page&" +
//--              "webmaster_id=" + webmaster_id + "&" +
              "time=" + escape( time );
    img.src = url;
}

// SendStartInfo();
// window.setInterval( 'SendPresenceInfo()', period * 1000 );