/*	Qualidigm	Homepage Block Resizing Utility v.1	4/11/06******************************************/function blockHeightCorrection() {	var blockHeight = new Array(3);	blockHeight[0] = document.getElementById("servicesBlock").offsetHeight;			blockHeight[1] = document.getElementById("consumerProfessionalsBlock").offsetHeight;	blockHeight[2] = document.getElementById("spotlightBlock").offsetHeight;	var primaryHeight = 0;	for (x=0; x<3; x++) {		if (blockHeight[x] > primaryHeight){			primaryHeight = blockHeight[x];		}	}	document.getElementById("servicesBlock").style.height = primaryHeight + 'px';	document.getElementById("consumerProfessionalsBlock").style.height = primaryHeight + 1 + 'px'; //Compensate for 1 pixel diff due to ul's	document.getElementById("spotlightBlock").style.height = primaryHeight + 'px';}