cs.pro.PageHeader = Ext.extend(Ext.Panel, {

	login: function() {
		this.setHeight(35);
		this.load('autoload/pro_header');
	},
	
	logout: function() {
		this.setHeight(4000);
		this.load('autoload/bg');
	},
	
	initComponent: function()
	{

		Ext.apply(this, {

			region: 'north',
			height: 35,
			autoLoad: 'autoload/pro_header'
			
		});
		
		cs.pro.PageHeader.superclass.initComponent.apply(this, arguments);

	}
});
