Ext.ns('app');

app.status = Ext.extend(Ext.Panel,{
    html : '<div ><a style="float:right" href="http://farcek.blogspot.com/" target="_blank">farcek.blogspot.com</a> © 2010 он.</div>',
	height : 28,
	border : false,
    initComponent : function(){
		app.status.superclass.initComponent.call(this);
		this.on('render',function(){
			this.body.on('mouseenter',function(){
				this.fireEvent('mouseenter');
			},this);
			this.body.addClass('footer');
		},this);
		
	}

	
});
