Ext.ns('app');

app.header = Ext.extend(Ext.Panel,{
	region: 'center',
	height : 70,
	border : false,
	
	initComponent : function(){
		app.header.superclass.initComponent.call(this);
		this.on('render',function(){
			this.body.addClass('header');
		},this);
	}
});
