
   window.onload = onLoad;
    var testimonials = new Array(
    <!-- TESTIMONIAL 1 -->
	'&quot;Over a year after adding promotional products to our print business, we have been so successful that we&rsquo;ve created a new company and opened new offices to support the promotional products market. ASI has helped us branch out...&quot; <br /><a href="success_stories.htm">Read more...</a>',

    <!-- TESTIMONIAL 2 -->
	'&quot;I have worked in the commercial printing industry for over 30 years. Since joining ASI, I have been able to become a "One Stop Shop". It has not only increased my income, but what I can offer my clients, while saving them thousands of dollars...&quot;<br /><br /><a href="success_stories.htm">Read more...</a>'
    );
	
	
	
    var total = testimonials.length - 1;

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

    }
