function random_text()
{};
var random_text = new random_text();
// Set the number of text strings to zero to start
var number = 0;
// Incremental list of all possible Text
random_text[number++] = '<span class="proGallery">We are very likely one of Pennsylvania Commercials smallest clients—just two employees. But you wouldd never know that given the high level of personalized service we received in finding the warehouse space we needed.</span><br><br><span class="proGallery"><strong>Dave Segall, DLS Electronics, LLC</strong><br><br></span><a href="about/about_testimonials.htm"><strong><span class="proGallery"><font color="#FF0000">More Testimonials</font></span></strong></a>'
random_text[number++] = '<span class="proGallery">Whether it is sourcing potential properties, negotiating purchase arrangements or lease negotiation, Pennsylvania Commercial plays a key role in all things real estate for PMI.</span><br><br><span class="proGallery"><strong>David Hartman, Production Masters, Inc.</strong><br><br></span><a href="about/about_testimonials.htm"><strong><span class="proGallery"><font color="#FF0000">More Testimonials</font></span></strong></a>'
random_text[number++] = '<span class="proGallery">Faced with moving the firm to another downtown location, moving outside the city, or building an entirely new building, Pennsylvania Commercial helped us find the right answer for our business.</span><br><br><span class="proGallery"><strong>Mike Somerhalder, Wayman, Irvin & McAuley, LLC</strong><br><br></span><a href="about/about_testimonials.htm"><strong><span class="proGallery"><font color="#FF0000">More Testimonials</font></span></strong></a>'
random_text[number++] = '<span class="proGallery">How would I describe Pennsylvania Commercial?  Professional.  Accessible. Knowledgeable. Responsive.  Persistent without being obnoxious.  A company that understands solutions, and how to offer alternatives to those solutions.  Need more?</span><br><br><span class="proGallery"><strong>Gregory Marzec, Affival, Inc.</strong><br><br></span><a href="about/about_testimonials.htm"><strong><span class="proGallery"><font color="#FF0000">More Testimonials</font></span></strong></a>'
random_text[number++] = '<span class="proGallery">We have enlisted the services of Pennsylvania Commercial for three significant engagements over the last 12 years—obviously they have a proven track record of closing excellent office space deals tailored to client wishes.</span><br><br><span class="proGallery"><strong>Keith Cameron, Houston Harbaugh, P.C.</strong><br><br></span><a href="about/about_testimonials.htm"><strong><span class="proGallery"><font color="#FF0000">More Testimonials</font></span></strong></a>'
random_text[number++] = '<span class="proGallery">Our U.S. Operating Center in Moon Township, PA is truly a representative complex for a world-class chemical company. As a strategic provider in that development, Pennsylvania Commercial is world class as well.</span><br><br><span class="proGallery"><strong>Lynne Sinal, NOVA Chemicals, Inc.</strong><br><br></span><a href="about/about_testimonials.htm"><strong><span class="proGallery"><font color="#FF0000">More Testimonials</font></span></strong></a>'
random_text[number++] = '<span class="proGallery">Pennsylvania Commercial has brought over 80% of our tenants to our industrial office park—and has been with us every step of the way in the prospecting, budgeting, leasing and negotiating process.</span><br><br><span class="proGallery"><strong>Paul Bova, Trafford Commerce Center</strong><br><br></span><a href="about/about_testimonials.htm"><strong><span class="proGallery"><font color="#FF0000">More Testimonials</font></span></strong></a>'
random_text[number++] = '<span class="proGallery">We have worked with the Pennsylvania Commercial people for over 10 years, and have consistently found them to be highly effective in supporting our efforts to secure quality space at a reasonable cost.</span><br><br><span class="proGallery"><strong>Jim Roberts, Chairman Emeritus</strong><br><br></span><a href="about/about_testimonials.htm"><strong><span class="proGallery"><font color="#FF0000">More Testimonials</font></span></strong></a>'
random_text[number++] = '<span class="proGallery">Pennsylvania Commercial helped us find our current location in the Koppers Building, and assisted us in acquiring more space in the building as the need arose.  When we needed to grow, they were there to help.</span><br><br><span class="proGallery"><strong>Jackie Koscelnik, DKYK </strong><br><br></span><a href="about/about_testimonials.htm"><strong><span class="proGallery"><font color="#FF0000">More Testimonials</font></span></strong></a>'
// Create a random number with limits based on the number
// of possible random text strings
var random_number = Math.floor(Math.random() * number);
// Write out the random text to the browser
document.write(random_text[random_number]);
