    // The Array Function 

	function makeArray(len) {
	    for (var i = 0; i < len; i++) this[i] = null;
	this.length = len;
	}

	// This is where the array of text/images/links is created.

	ideas = new makeArray(8);
	ideas[0] = '<a href="/English/Company/Patient_Testimonials.html" class="TestimonialLeftQuote">&ldquo;My hip resurfacing was the best decision I&rsquo;ve made, and it has changed my life.&rdquo;</a><div class="TestimonialLeftPatient">&mdash; Dan Madden</div>';
	ideas[1] = '<a href="/English/Company/Patient_Testimonials.html" class="TestimonialLeftQuote">&ldquo;I&rsquo;ve been grateful for every pain-free walk, bike ride, and daily task.&rdquo;</a><div class="TestimonialLeftPatient">&mdash; Bob Kaslik</div>';
	ideas[2] = '<a href="/English/Company/Patient_Testimonials.html" class="TestimonialLeftQuote">&ldquo;Where there once was pain, there now is confidence.  Not quite 2-1/2 months after my surgery, I played my first full 18 holes of golf and couldn&rsquo;t believe how I was getting through the ball.&rdquo;</a><div class="TestimonialLeftPatient">&mdash; David Hunter</div>';
	ideas[3] = '<a href="/English/Company/Patient_Testimonials.html" class="TestimonialLeftQuote">&ldquo;Hip resurfacing was the answer to my prayer. After 10 days my walker went into retirement.&rdquo;</a><div class="TestimonialLeftPatient">&mdash; Gertrude Anderson</div>';
	ideas[4] = '<a href="/English/Company/Patient_Testimonials.html" class="TestimonialLeftQuote">&ldquo;My life has always been active and, until arthritis set in, pain free. Now, Dr. Rector has given me back my active, pain-free life.&rdquo;</a><div class="TestimonialLeftPatient">&mdash; Randy Birch</div>';
	ideas[5] = '<a href="/English/Company/Patient_Testimonials.html" class="TestimonialLeftQuote">&ldquo;Even though my two hip resurfacing surgeries were only 12 weeks apart, I feel extraordinary!  No more pain after two years of suffering.&rdquo;</a><div class="TestimonialLeftPatient">&mdash; Mira Perrizo</div>';
	ideas[6] = '<a href="/English/Company/Patient_Testimonials.html" class="TestimonialLeftQuote">&ldquo;After two months I was able to resume horseback riding, bike riding, swimming, and my long walks with my dog. I find myself flying up and down the stairs and forgetting how painful it was to do this just a few months ago.&rdquo;</a><div class="TestimonialLeftPatient">&mdash; Anna Groth</div>';
    ideas[7] = '<a href="/English/Company/Patient_Testimonials.html" class="TestimonialLeftQuote">&ldquo;Four weeks after surgery I was off my crutches and completed my first road ride. Granted it was only 20 miles, flat and a bit slow, but I did it. Fast forward to today. At this point I have ridden over 4,300 miles for the year. The most important recovery point is I can walk again. Last November I went to the zoo with my grandson and walked the whole zoo with him. That was something that left me crippled with pain a year ago. I have my life back.&rdquo;</a><div class="TestimonialLeftPatient">&mdash; Sam McCandless</div>';
 
	// The random number generator.

	function rand(n) {
	seed = (0x015a4e35 * seed) % 0x7fffffff;
	return (seed >> 16) % n;
	}
        
	var now = new Date()
	var seed = now.getTime() % 0xffffffff
	
	// Where you place this is where the random object will be displayed.

	document.write(ideas[rand(ideas.length)])