/*
 * Define the menu items here 
 */
function m_item(u, s, l) {
    this.url = u;
    this.m_short = s;
    this.m_long = l;
}

var menu = new Array();
menu[menu.length] = new m_item("./index.html", "Back",
                        "Return to the start of this website");
menu[menu.length] = new m_item("./demo.html", "24hrs e-VLBI",
                        "Introduction");
menu[menu.length] = new m_item("./24hoursgmap.html", "Who/Where",
                      "Showing the telescopes on google maps");
menu[menu.length] = new m_item("./cams.html", "Webcams",
                     "Some stations have a webcam ...");
menu[menu.length] = new m_item("./on-the-fly.php", "Snapshots",
                     "Uncalibrated images every 5 minutes and (roughly) calibrated images every hour");
menu[menu.length] = new m_item("./otf.html", "Status",
                    "Other realtime status information about the system");
menu[menu.length] = new m_item("./diy.html", "Try it!",
                     "Play around with a software VLBI instrument");
var defbg = '#ffcc33';

