

function show_DBmenu() {
    if (document.getElementById('db-menu') != null) {
        document.getElementById('db-menu').style.display = "block"
    }
}

function hide_DBmenu() {
    if (document.getElementById('db-menu') != null) {
        document.getElementById('db-menu').style.display = "none";
    }
}

function highlight_db_menu_on(hoverItem) {

    document.getElementById(hoverItem).setAttribute("class", document.getElementById(hoverItem).className.replace(" hover", "").replace(" no-hover", "") + " hover");
    
}

function highlight_db_menu_off(hoverItem) {

    document.getElementById(hoverItem).setAttribute("class", document.getElementById(hoverItem).className.replace(" hover", "").replace(" no-hover", "") + " no-hover");

}

function init_DBmenu() {
var tableString = "";
tableString = '<table style="position: absolute; margin-top:28px; margin-left:1px; display: none;" id="db-menu" border="0" cellpadding="0" cellspacing="0"><tbody>';
tableString += '<tr class="mi first" id="dbr1" onmouseover="highlight_db_menu_on(this.id)" onmouseout="highlight_db_menu_off(this.id)">';
tableString += '<td class="icn "><span></span></td><td><a href="/DoingBusinessWithGulf/TheAdvantageofGulf.aspx"><span style="cursor: pointer;" class="txt">The Advantage of... Gulf</span></a></td><td></td></tr>';
tableString += '<tr class="mi" id="dbr2" onmouseover="highlight_db_menu_on(this.id)" onmouseout="highlight_db_menu_off(this.id)">';
tableString += '<td class="icn "><span></span></td><td><a href="/DoingBusinessWithGulf/ProspectiveCustomers.aspx"><span style="cursor: pointer;" class="txt">Prospective Customers</span></a></td><td></td></tr>';
tableString += '<tr class="mi" id="dbr3" onmouseover="highlight_db_menu_on(this.id)" onmouseout="highlight_db_menu_off(this.id)">';
tableString += '<td class="icn "><span></span></td><td><a href="/DoingBusinessWithGulf/VendorProposals.aspx"><span style="cursor: pointer;" class="txt">Vendor Proposals</span></a></td><td></td></tr>';
tableString += '<tr class="mi" id="dbr4" onmouseover="highlight_db_menu_on(this.id)" onmouseout="highlight_db_menu_off(this.id)">';
tableString += '<td class="icn "><span></span></td><td><a href="/DoingBusinessWithGulf/SponsorshipRequests.aspx"><span style="cursor: pointer;" class="txt">Sponsorship Requests</span></a></td><td></td></tr>';
tableString += '<tr class="mi" id="dbr4" onmouseover="highlight_db_menu_on(this.id)" onmouseout="highlight_db_menu_off(this.id)">';
tableString += '<td class="icn "><span></span></td><td><a href="/DoingBusinessWithGulf/LogosDownloads.aspx"><span style="cursor: pointer;" class="txt">Logos & Downloads</span></a></td><td></td></tr>';
tableString += '<tr class="mi" id="dbr5" onmouseover="highlight_db_menu_on(this.id)" onmouseout="highlight_db_menu_off(this.id)">';
tableString += '<td class="icn "><span></span></td><td><a href="http://roadmapapp.gulfoil.com/roadmap/login.asp" target="_blank"><span style="cursor: pointer;" class="txt">OLD ROADMAP Login</span></a></td><td></td></tr>';
tableString += '<tr class="mi last" id="dbrlast" onmouseover="highlight_db_menu_on(this.id)" onmouseout="highlight_db_menu_off(this.id)">';
tableString += '<td class="icn "><span></span></td><td><a href="https://roadmap.gulfoil.com" target="_blank"><span style="cursor: pointer;" class="txt">NEW ROADMAP Login</span></a></td><td></td></tr></tbody></table>';
document.write(tableString);
}
