/*
 * 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[0] = new m_item("./index.html", "e-VLBI", "Introducing e-VLBI and this demo");
menu[1] = new m_item("./demo.html", "24hrs e-VLBI",
                     "Details of the demonstration including realtime information");
menu[2] = new m_item("./resolution.html", "Why VLBI?",
                     "About astronomers, radiotelescopes and why size does matter");
menu[3] = new m_item("./vlbi-technique.html", "About VLBI",
        "A gentle introduction to interferometry and VLBI");
/*
menu[1] = new m_item("./resolution.html", "Resolution", "About astronomers, telescopes and sizes");
menu[2] = new m_item("./radio.html", "Radio astronomy", "More specifically about radio astronomy and the European VLBI network");
menu[3] = new m_item("./vlbi-technique.html", "VLBI", "A gentle introduction to interferometry and VLBI");
menu[4] = new m_item("./e_versus.html", "e-VLBI vs. VLBI", "e-VLBI versus VLBI: tell me more ...");
menu[5] = new m_item("./timeline.html", "Timeline", "Show me effect of e-VLBI on the timeline");
menu[6] = new m_item("./evlbi_rocks.html", "e-VLBI rocks", "More advantages of realtime VLBI");
menu[7] = new m_item("./diy.html", "Interactive", "Perform (simulated) VLBI on your own");
*/
var defbg = '#ffcc33';

