Ext.namespace('com.domorewithsage.mock');

com.domorewithsage.mock.Menubar = Ext.extend(Ext.Toolbar, {


    initComponent : function()
    {
        Ext.apply(this, {
            items : [{
                text:'File',
                menu: [{
                    text:'...'
                }]
            }, {
                text:'Edit',
                menu: [{
                    text:'...'
                }]
            }, {
                text:'View',
                menu: [{
                    text:'...'
                }]
            }, {
                text:'Modules',
                menu: [{
                    text:'...'
                }]
            }, {
                text:'Settings',
                menu: [{
                    text:'...'
                }]
            }, {
                text:'Tools',
                menu: [{
                    text:'...'
                }]
            }, {
                text:'Favourites',
                menu: [{
                    text:'...'
                }]
            }, {
                text:'WebLinks',
                menu: [{
                    text:'...'
                }]
            }, {
                text:'Help',
                menu: [{
                    text:'...'
                }]
            }
        ]});


        com.domorewithsage.mock.Menubar.superclass.initComponent.call(this);
    }


});