Ext.ns('app');

app.footer = Ext.extend(Ext.Panel,{
    
	region : 'south',
	//html : "footer",
	
    initComponent : function(){
		app.footer.superclass.initComponent.call(this);
		this.collapsed = true;
		this.on('beforeexpand',function(p){
			
		});
	}

	
});
