//UTIL
	function fixSize(){
		myNum=myContent.document.body.scrollHeight
		document.getElementById('myContent').style.height = myNum+'px';
	}

// HOMEPAGE IMAGE ROTATOR
var imgGrp0 = new Array("images/home_testimonial_1.jpg", "images/home_testimonial_2.jpg", "images/home_testimonial_3.jpg", "images/home_testimonial_4.jpg", "images/home_testimonial_5.jpg");

function getRandomImage(intImgGroup){
	randNum = Math.floor ( Math.random ( ) * imgGrp0.length);
	return imgGrp0[randNum];
}

