function defineOtherLayers() {
	// dObj = new LayerObj('id');
	dHouseDiv = new LayerObj('houseDiv');
	dContentQA = new LayerObj('contentQA');

	// dContent.initResizeContainer(OrigWidth, OrigHeight);
	// dObj.initResize(OrigLeft, OrigTop, OrigWidth, OrigHeight, constrain true/false);
}

function registerOtherEvents() {
	// dObj.obj.onclick = clickfunction;
}

function otherMainContent() {
	// Main layout code sequence

//	alert(dMain.width);
	dHouseDiv.setLeft(dMain.width - 220);
	dContentQA.setSize(dMain.width - 220,dMain.height);

	dContent.setVisible(true);
	// dObj.resize(center true/false);
	// dObj.textResize(OrigFontSize, OrigLineHeight);
}

