<!--
	//***************************************
	// Random Testimonials
	//***************************************
	
	function random_content(){
	var mycontent=new Array()
	//specify random content below.
	mycontent[1]='"Our custom home is our second major project with Hughes Building Company, Inc.  My husband, John, and I enjoy the design process..."'
	mycontent[2]='"We are "frequent flyers" with Hughes Building Company, Inc. with our fourth remodel underway currently.  Hughes Building Company, Inc..."'
	mycontent[3]='"We enjoyed working with Hughes Building Company, Inc. for their professionalism, their flexibility and their integrity.  The owner, Brian Hughes..."'
	var ry=Math.floor(Math.random()*mycontent.length)
	if (ry==0)
	ry=1
	document.write(mycontent[ry])
	}
	random_content()
//-->
