MyDesktop = new Ext.app.App({
	init :function(){
		Ext.QuickTips.init();
	},
	getModules : function(){
		return [
			new MyDesktop.QuienesSomos(),
            new MyDesktop.DondeEstamos(),
            //new MyDesktop.Propiedades(),
            new MyDesktop.Contactenos(),
            new MyDesktop.AdministracionModule(),
            new MyDesktop.VistaPropiedades()
		];
	},
    getStartConfig : function(){
        return {
            title: 'Inmobiliaria',
            iconCls: 'user',
            toolItems: [{
                text:'Opciones',
                iconCls:'opciones',
                scope:this
            },'-',{
                text:'Logout',
                iconCls:'salir',
                scope:this
            }]
        };
    }
});