
function loadMenus() {
    var filePath = document.location.pathname.split('/');
    var fileName = (filePath[filePath.length - 1]);
    if (typeof fileName == undefined) {
        fileName = 'index.html'
    } else {
       if (fileName == '') {
           fileName = 'index.html';
        } 
    }

    var url = 'load_menus.php';
    jQuery.ajax({
        url: url+"?f=" + fileName,
        success: function(data) {
            jQuery('#toolbar_horizontal').html(data);
        }
    });
    
}
loadMenus();

