/*
    MIRANDA Code
    ------------------
    M_navbar.js - This file contains all the elments of the global navigation bar.
    Please edit the code included in editable zone.
*/

function M_navbar() {

    document.write('<h3 class="hidden">Navigation bar</h3>');
    document.write('<ul>');

    //----------------------
    //start editable zone
    document.write('<li><a href="#">Careers Home</a></li>');
    //end editable zone
    //----------------------

    document.write('</ul>');

}
