 menu_status = new Array();

function showHide(theid){
    if (document.getElementById) {
    var switch_id = document.getElementById(theid);
        if(menu_status[theid] != 'show') {
           switch_id.className = 'show';
           menu_status[theid] = 'show';
        }else{
           switch_id.className = 'hide';
           menu_status[theid] = 'hide';
        }
    }
}



document.write('<p>JavaScript Jukebox</p>'.link('index.html'));

document.write('<div id="submenu2" class="show">');
document.write('<p>Original Jukebox</p>'.link('juke_instr.html'))
document.write('<p>MiniJukebox</p>'.link('mini_instr.html'))
document.write('<p>Midi Resources</p>'.link('juke_resources.html'))
document.write('<p>Help and User\'s Guide</p>'.link('jukehelp.html'))
document.write('<p>About the Jukebox</p>'.link('juke_about.html'))
document.write('<p>(Non)Support</p>'.link('juke_support.html'))
document.write('</div>')

document.write('<p>Ralph Art Home</p>'.link('/index.html'))
