// reference local blank image
Ext.BLANK_IMAGE_URL = '../lib/ext/resources/images/default/s.gif';

// create namespace
Ext.namespace('ER_UI');

MainMenubar = new Ext.Toolbar({
	id: 'MainMenubar',
	items: [{
		text: 'Ranch Operations',
		menu: {
		xtype: 'ranchopsmenu'
		}
	},{
		text: 'Market Place',
		menu: {
			xtype: 'marketplacemenu'
		}
	},{
		text: 'E-R Registry',
		menu: {
		xtype: 'registrymenu'
		}
	},{
		text: 'Events',
		menu: {
			xtype: 'eventsmenu'
		}
	},{
		text: 'Current Standings',
		menu: {
			xtype: 'currentstandingsmenu'
		}
	},{
		text: 'The Courtyard',
		menu: {
			xtype: 'courtyardmenu'
		}
	},{
		text: 'Other Stuff',
		menu: {
			xtype: 'otherstuffmenu'
		}
	},{
		text: 'Your Account',
		menu: {
			xtype: 'accountmenu'
		}
	},{
		text: 'Help',
		menu: {
			xtype: 'helpmenu'
		}
	},{
		text: 'Horses 411',
		menu: {
			xtype: 'horses411menu'
		}
	}]
});

