Ext.onReady(function() {
	var el = Ext.get('mainmenu-list');
	if (el) {
		el.show();
		new Ext.ux.Menu(el, {
			transitionType: 'slide'
		});
	}
});

