var theText = new Array();
var theAuthor = new Array();

theText[0] = "... your pricing is the best around no one comes close. Another reason for having custom made shirts is that they are unique...";
theAuthor[0] = "MARK SEMMES";

theText[1] = "...The quality is superior to many custom shirts I have that cost much more. I will order more in the future...";
theAuthor[1] = "ERIC PLOTNICK";

theText[2] = "...you have provided the most complete, professional, responsive and courteous service I've ever had over the Internet...";
theAuthor[2] = "DAVID SWINGLER" ;

theText[3] ="...I received my two suit order in three (3) weeks!!!! Amazing. By the way, they fit like a dream and I feel like a billion dollars...";
theAuthor[3] = "GREGORY ALAN";

theText[4] = "...Mr. Hemrajani...your customer service is first class...your shirts handle commercial laundering exceptionaly well...";
theAuthor[4] = "DOUGLAS PATTON";

theText[5] = "...I know you put a lot of effort into your business and your products...I thought you should know that it's appreciated each morning...";
theAuthor[5] = "BENETT GROSS";

theText[6] = "As we say in Mexico: Precioso! Maravilloso! Muy Bueno! Honestly, your quality goes beyond my expectations!!";
theAuthor[6] = "RICARDO AGUAYO";

theText[7] = "...I too have previously bought inferior custom made shirts at ridiculously high prices - yours are superlative and intelligently priced.";
theAuthor[7] = "MARK LONG";

theText[8] = "...the shirts are the best cut and make i have ever had from italy to london ...you are a master of your craft...";
theAuthor[8] = "JOHN PUNTAR";



var p = theText.length;
var whichImageTesti = Math.round(Math.random() * (p-1));

//alert(Math.random())

function showText(){
	document.write(theText[whichImageTesti]);	
}

function showauthor(){
	document.write("<span class='testimonial_author'>" + theAuthor[whichImageTesti] + "</span> ");
}


