//
// Define the menu bar structure...
//
var menuBarDesc = [
    {
        label: 'About',
        popup: [
            {
                label: 'Statement & Process',
                action: './about.html'
            },
            {
                label: 'Resum\xE9',
				action: './resume.html'
            },
            {
                label: 'Myriad of Paths',
				action: './myriad_Statement.html'
            }
        ]
    },
    {
        label: 'Portfolio',
        popup: [
            {
                label: 'Myriad of Paths',
                action: './myriad.html'
            },
            {
                label: 'New Work',
                action: './new.html'
            }
        ]
    },
    {
        label: 'Sales & Licensing',
        action: './sales.html'
    },
    {
        label: 'Contact',
        action: './contact.html'
    }
];

var menu;
jQuery("document").ready( function() {
    menu = new MenuBar('#main_menu', menuBarDesc).create();
} );

