
Ext.ns('ser');

//=========================================================================================
//-------------------------------(Main)----------------------------------------------------
//=========================================================================================
function load_services()
{

	//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,
			bodyStyle	:'background-color:#ffffff',
			layout		:'border',
			items		:[{
				region		:'center',
				autoScroll  :true,
				border		:false,
				margins     :'0 5 0 25',
				html		:["<table width=100%><tr valign='top'>",
				              "<td width=50%>",
                              "<div class='title_text'>Detail Engineering</div>",
                              "<div class='paragraph_text'>",
                              "<b>Civil Engineering</b>",
                              "<ul>",
                              "<li>Site grading and excavation drawings.</li>",
                              "<li>Site service drawings for Fire, Water, Sewage and Drainage.</li>",
                              "</ul></br>",
                              "<b>Structural Engineering</b>",
                              "<ul>",
                              "<li>Foundation design.</li>",
                              "<li>Structural steel design.</li>",
                              "<li>Miscellaneous steel design (walkways, stairs, conveyor bents etc.)</li>",
                              "<li>Building design or Pre-eng building specifications.</li>",
                              "<li>Architectural drawings for internal rooms, offices and washrooms etc.</li>",
                              "</ul></br>",
                              "<b>Mechanical Engineering</b>",
                              "<ul>",
                              "<li>Develop large scale G.A's incorporating vendor information on purchased major equipment and integrating operational requirements regarding access, maintenance, etc.</li>",
                              "<li>Detail design for fabricated equipment.</li>",
                              "<li>Co-ordination with strcutural for all steel supports, operating floor design etc to ensure process equipment and structural supports are integrated.</li>",
                              "<li>Provide drive lists incorporating major equipment drives and fabricated equipment drives.</li>",
                              "<li>Provide compressed air system design, compressor specifications etc.</li>",
                              "</ul></br>",
                              "<b>Electrical Engineering</b>",
                              "<ul>",
                              "<li>Single Line design and drawings.</li>",
                              "<li>HV power supply design, grounding design, fault study and Arc Flash analysis.</li>",
                              "<li>Motor List compilation with cable sizes, protective device settings and MCC layouts.</li>",
                              "<li>Power layouts showing locations for all motors and local disconnects.</li>",
                              "<li>Conduit or tray routing layouts.</li>",
                              "<li>Lighting design and layouts together with panel circuiting.</li>",
                              "<li>Interconnection diagrams for all process control integrating all vendors information.</li>",
                              "</ul>",
                              "</div>",
                              "</td><td>",
                              "<div class='title_text'>Process Concept</div>",
				              "<div class='paragraph_text'>",
				              "<ul>",
                              "<li>Develop General Arrangement drawings outlining the conceptual design.</li>",
                              "<li>Provide capital cost estimate for projects.</li>",
                              "<li>Provide inital project schedule or assist client in developing one.</li>",
                              "</ul>",
                              "</div></br>",
				              "<div class='title_text'>Equipment Procurement - Fabricated Items</div>",
				              "<div class='paragraph_text'>",
				              "<ul>",
                              "<li>Provide tender specifications for fabricated items.</li>",
                              "<li>Provide tender comparison documentation and assist in negotiations.</li>",
                              "<li>Track manufacturing progress and make shop visits as required.</li>",
                              "</ul>",
                              "</div></br>",
  				              "<div class='title_text'>Site Supervision</div>",
				              "<div class='paragraph_text'>",
				              "<ul>",
                              "<li>Specialist (process, structural , mechanical or electrical) visits as required during construction.</li>",
                              "<li>On Site Engineer to assist overall project manager and ensure correct interpretation of drawings.</li>",
                              "</ul>",
                              "</div>",

                              "</div>",
                              "</td>",
                              "</tr></table>"]
			}]
		}]
	});

	cntRef.doLayout();
};
