
   window.onload = onLoad;
    var testimonials = new Array(
    <!-- TESTIMONIAL 1 -->
	'From the first time we spoke on the phone I had a sense that you where the right guy for me...<br /><br /><strong>Kimberley Piacentino</strong><br /><a href="testimonials_pg1.php">Read more...</a>',

    <!-- TESTIMONIAL 2 -->
	'We work with a lot of different subcontractors and your company is in a class by itself..<br /><br /><strong>Rich Francis, K.<br />Hovnanian Homes</strong><br /><a href="testimonials_pg1.php">Read more...</a>',
	
	<!-- TESTIMONIAL 3 -->
	'I cannot recommend you enough to any individual, family, or company that is in need of Mold Remediation services or any other service that your company provides..<br /><br /><strong>Matthew H. Elias</strong><br /><a href="testimonials_pg1.php">Read more...</a>',
	
	<!-- TESTIMONIAL 4 -->
	'Your mold diagnostics are superior and the test results were convincing as was the independent post-remediation test...<br /><br /><strong>Gerald Quarnmen</strong><br /><a href="testimonials_pg1.php">Read more...</a>'
    );
	
	
	
    var total = testimonials_set1.length - 1;

    function onLoad()
    {
        var random = Math.round( Math.random() * total);
        document.getElementById("homepage_testimonials").innerHTML = testimonials[random];

    }