/*Ext.onReady(function() {
	var contentEditorEl = Ext.get('x-home-container');
	var childSelectors = contentEditorEl.query('div.home-contentitem');
	
	var contentViewPort = new Ext.Panel({
		width:984,
		autoHeight: true,
		plain: true,
		border: false,
		cls: 'x-home-content-container',
		layout: 'column',
		items: [{
			id: 'x-home-leftcolumn',
			width: 427,
			height: '100%',
			header: false,
			border: false
		}, {
			width: 14,
			header: false,
			border: false,
			cls: 'x-home-content-column',
			html: '&nbsp;'
		},{
			id: 'x-home-rightcolumn',
			width: 543,
			height: '100%',
			header: false,
			border: false,
			cls: 'x-home-content-column'
		}]
		
	});
	var leftCol = Ext.getCmp('x-home-leftcolumn');
	var rightCol = Ext.getCmp('x-home-rightcolumn');
	
	for (var i=0; i < childSelectors.length; i++) {
		var childId = childSelectors[i].id;
		
		// create new Panel
		var newPanelConfig = {
			xtype: 'panel',
			header: false,
			border: false,
			contentEl: childId
		};
	
		if (Ext.fly(childId).hasClass('home-contentitem-left')) {
			leftCol.add(newPanelConfig);
		}
		if (Ext.fly(childId).hasClass('home-contentitem-right')) {
			rightCol.add(newPanelConfig);
			
		}
	}
	
	contentViewPort.applyToMarkup('x-home-container');
});*/
