// JavaScript Document



/* ROTATIN TESTIMONIALS (HOME PAGE) -----------------------------------------------------------------------------



    window.onload = onLoad;

    var testimonials_set1 = new Array(

    <!-- TESTIMONIAL 1 -->

	'I would recommend your services to other builders interested in stopping small problems before they develop into serious concerns...<br /><br /><strong>Howard R. Cooper</strong><br /><a href="testimonials_pg1.php">Read more...</a>',



    <!-- TESTIMONIAL 2 -->

	'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>',

	

	<!-- TESTIMONIAL 3 -->

	'The flexibility of your scheduling, the timeliness of your response and your willingness to work within our schedule really made the process much easier..<br /><br /><strong>Tricia Long, WMMR</strong><br /><a href="testimonials_pg1.php">Read more...</a>',

	

	<!-- TESTIMONIAL 4 -->

	'As a medical doctor conversing with someone that has an understanding of the medical implications of mold exposure was comforting.<br /><br /><strong>Dr. Steven Linn</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("testimonials_content1").innerHTML = testimonials_set1[random];

    }



*/



/* ROTATING TESTIMONIALS (SUB PAGES) -----------------------------------------------------------------------------*/



   window.onload = onLoad;

    var testimonials_set1 = 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_pg6.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_pg2.php#rich">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_pg2.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 testimonials_set2 = new Array(

    <!-- TESTIMONIAL 1 -->

	'Your crew was courteous, quick and professional, which greatly helped resolve the situation. We will gladly use your services again in the future...<br /><br /><strong>Dawn Lush, State of PA</strong><br /><a href="testimonials_pg1.php#dawn">Read more...</a>',



    <!-- TESTIMONIAL 2 -->

	'You have an amazing understanding of mold and moisture problems...<br /><br /><strong>Amy Freeze<br />NBC 10</strong><br /><a href="testimonials_pg4.php">Read more...</a>',

	

	<!-- TESTIMONIAL 3 -->

	'When your dog Hunter found where the mold was I really was surprised that it could be so nasty back there and we had no idea...<br /><br /><strong>Bart Arntz</strong><br /><a href="testimonials_pg3.php">Read more...</a>',

	

	<!-- TESTIMONIAL 4 -->

	'As a medical doctor conversing with someone that has an understanding of the medical implications of mold exposure was comforting.<br /><br /><strong>Dr. Steven Linn</strong><br /><a href="testimonials_pg5.php#steven">Read more...</a>'

    );

	

	var testimonials_set3 = new Array(

    <!-- TESTIMONIAL 1 -->

	'You completed all work in a timely manner, your entire staff is thoroughly professional..<br /><br /><strong>Dennis Schwandt</strong><br /><a href="testimonials_pg8.php#dennis">Read more...</a>',



    <!-- TESTIMONIAL 2 -->

	'The flexibility of your scheduling, the timeliness of your response and your willingness to work within our schedule really made the process much easier..<br /><br /><strong>Tricia Long, WMMR</strong><br /><a href="testimonials_pg5.php">Read more...</a>',

	

	<!-- TESTIMONIAL 3 -->

	'I am impressed with the quality and thoroughness of work performed, and the condition of the sites following remediation..<br /><br /><strong>Paul Ledebur, CMC, CIEC</strong><br /><a href="testimonials_pg7.php#paul">Read more...</a>',



	

	<!-- TESTIMONIAL 4 -->

		'I would recommend your services to other builders interested in stopping small problems before they develop into serious concerns...<br /><br /><strong>Howard R. Cooper</strong><br /><a href="testimonials_pg4.php#howard">Read more...</a>'



    );

	

	

    var total = testimonials_set1.length - 1;

	var total = testimonials_set2.length - 1;

	var total = testimonials_set3.length - 1;

    function onLoad()

    {

        var random = Math.round( Math.random() * total);

        document.getElementById("testimonials_content1").innerHTML = testimonials_set1[random];

		document.getElementById("testimonials_content2").innerHTML = testimonials_set2[random];

		document.getElementById("testimonials_content3").innerHTML = testimonials_set3[random];

    }