function showMenu()
{
    if ( document.getElementById )
    {
        var itemRoot = document.getElementById( "menu" );

        if ( document.styleSheets[0].disabled == false )
        {
            var theMenu      = "\n    <object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" width=\"544\" height=\"152\">\n";
            theMenu     += "    <param name=\"movie\" value=\"flash/menu.swf?page="+page+"\" />\n";
            theMenu     += "    <param name=\"wmode\" value=\"transparent\" />\n";
            theMenu     += "    <!--[if !IE]>-->\n";
            theMenu     += "    <object type=\"application/x-shockwave-flash\" data=\"flash/menu.swf?page="+page+"\" width=\"544\" height=\"152\">\n";
            theMenu     += "    <param name=\"wmode\" value=\"transparent\" />\n";
            theMenu     += "    <!--<![endif]-->\n";
            theMenu     += "    <ul>\n";
            theMenu     += "    <li><a href=\"?p=news\" title=\"News\" target=\"_self\">News<a/></li>\n";
            theMenu     += "    <li><a href=\"?p=bio\" title=\"History\" target=\"_self\">History<a/></li>\n";
            theMenu     += "    <li><a href=\"?p=events\" title=\"Live\" target=\"_self\">Live<a/></li>\n";
            theMenu     += "    <li><a href=\"?p=galleries\" title=\"Gallery\" target=\"_self\">Gallery<a/></li>\n";
            theMenu     += "    <li><a href=\"?p=downloads\" title=\"Downloads\" target=\"_self\">Downloads<a/></li>\n";
            theMenu     += "    <li><a href=\"?p=links\" title=\"Links\" target=\"_self\">Links<a/></li>\n";
            theMenu     += "    <li><a href=\"?p=faq\" title=\"FAQ\" target=\"_self\">FAQ<a/></li>\n";
            theMenu     += "    <li><a href=\"?p=contact\" title=\"Contact\" target=\"_self\">Contact<a/></li>\n";
            theMenu     += "    </ul>\n";
            theMenu     += "    <!--[if !IE]>-->\n";
            theMenu     += "    </object>\n";
            theMenu     += "    <!--<![endif]-->\n";
            theMenu     += "</object>\n";
        }
        else
        {
            var theMenu      = "\n    <ul>\n";
            theMenu     += "    <li><a href=\"?p=news\" title=\"News\" target=\"_self\">News<a/></li>\n";
            theMenu     += "    <li><a href=\"?p=bio\" title=\"History\" target=\"_self\">History<a/></li>\n";
            theMenu     += "    <li><a href=\"?p=events\" title=\"Live\" target=\"_self\">Live<a/></li>\n";
            theMenu     += "    <li><a href=\"?p=galleries\" title=\"Gallery\" target=\"_self\">Gallery<a/></li>\n";
            theMenu     += "    <li><a href=\"?p=downloads\" title=\"Downloads\" target=\"_self\">Downloads<a/></li>\n";
            theMenu     += "    <li><a href=\"?p=links\" title=\"Links\" target=\"_self\">Links<a/></li>\n";
            theMenu     += "    <li><a href=\"?p=faq\" title=\"FAQ\" target=\"_self\">FAQ<a/></li>\n";
            theMenu     += "    <li><a href=\"?p=contact\" title=\"Contact\" target=\"_self\">Contact<a/></li>\n";
            theMenu     += "</ul>\n";
        }

        itemRoot.innerHTML = theMenu;
    }
}
