
/**
* The initial login / home page
*/

// Declare the namespace - this define the scope of the visiblity of these variables, similar to OOP inheirtance
Ext.namespace('Smart.Footer');


Smart.Footer = Ext.extend(Ext.Panel, {
	id:    'AdvertiserSmartFooter',
	region: 'south',
	height: 25,
	html: '<div><div  style="float: left;" class="x-grid-empty">©' + new Date().format('Y') + ' Specific Media Inc. </div></div>'
});