
Ext.ns('eng');

//=========================================================================================
//-------------------------------(Main)----------------------------------------------------
//=========================================================================================
function load_engineering()
{
	
	//get the center panel on the page from the component id.
	//store the object in a re usable variable.
	cntRef = Ext.getCmp('Center_Div');
	cntRef.removeAll(true);
	cntRef.add({
		xtype		:'panel',
		margins		:'10 10	10 10',
		layout		:'fit',
		border		:false,
		items		:[{
			xtype		:'panel',
			border		:false,
			layout		:'border',
			items		:[{
				region		:'center',
				border		:false,
				html		:"<div class='title_text'>Engineering Services</div><div class='paragraph_text'><p>to come</p></div>"
			},{
				region		:'east',
				border		:false,
				width		:300,
				html		:""
			}]
		}]
	});
			
	cntRef.doLayout();
};
