// JavaScript Document
//this javascript is used to stretched the image background of the document

function changeDivHeight() {
	startHeight = 1500;
	document.getElementById('middle-background-image_cme_stretch').style.height=startHeight + 'px';
	divHeight=document.getElementById('middle-content_bs_cme_stretch').offsetHeight;
	backHeight=divHeight + 30;
	document.getElementById('middle-background-image_cme_stretch').style.height=backHeight + 'px';
}