// JavaScript Document
var theTestimonials = new Array() 

theTestimonials[0] = "<span style='font-style: italic'>&#34;I was impressed with the amount of options we had to choose from....&#34;</span><br /><br />  -- Mark Ferlinetti<br />";
theTestimonials[1] = "<span style='font-style: italic'>&#34;We recieved our quote while on the phone and had our order placed in less than 10 minutes....&#34;</span><br /><br /> -- Sandra Hughes <br />";
theTestimonials[2] = "<span style='font-style: italic'>&#34;Best pricing available... I saved more than i budgeted for.&#34;</span><br /> -- Scott Simkins <br />";
theTestimonials[3] = "<span style='font-style: italic'>&#34;I started out looking for a DSL line with voice. Your rep explained to me a better service that was available at a very good price&#34;</span><br /><br /> -- Michelle McCormick <br />";

theTestimonials[4] = "<span style='font-style: italic'>&#34;Our representative did not leave us after we signed. He helped manage the entire install with us.&#34;</span><br /><br /> -- Calixta Marie <br />";

theTestimonials[5] = "<span style='font-style: italic'>&#34;Thank you for escalating our installation. We would have never met our deadline without you&#34;</span><br /><br /> -- John Horsley <br />";

theTestimonials[6] = "<span style='font-style: italic'>&#34;We have 7 locations and not one carrier can service them all. you were able to give me one point of contact and the best pricing options no matter who the carrier was.&#34;</span><br /><br /> -- Paul Connor <br />";




var p = theTestimonials.length;
for (i = 0; i < p; i++){
 
}
var whichOne = Math.round(Math.random()*(p-1));
document.write(theTestimonials[whichOne]);
//document.write('<br /><a href="/index/testimonials.aspx">View More</a>');


