//store each part of each testimonial in an array
headline = new Array(4);
testimonial = new Array(4);
image =  new Array(4);
firstname =  new Array(4);
lastname =  new Array(4);
website =  new Array(4);

// --- PLEASE NOTE ---
// Enter the website without http, image with http, make sure quotation marks are preceded by a backslash, 
// and make sure the end of each line outside of the quotes has a semicolon

// TESTIMONIAL 1 ----------- 

headline[0] = "This savvy mom turned her decorating frustrations into $15,000 A MONTH online business!";
testimonial[0] = "\"My revenues went from $3,000 a month to $15,000 a month. It was like night and day. The amazing thing is, I don't have to spend more than a couple of hours a day running the whole thing! <br /><br /> IMC's \"Insider Secrets\" Course is simply the most comprehensive guide out there to getting started. You won't find that depth of information anywhere else.\"";
image[0] = "http://images.marketingtips.com/images/thoden_small.jpg";
firstname[0] = "Jennifer";
lastname[0] = "Thoden";
website[0] = "www.DraperySewingSupplies.com"; 


// TESTIMONIAL 2 ----------- 

headline[1] = "He's been able to quit his day job and buy his first car, a Mercedes-Benz... at age 22!";
testimonial[1] = "\"I started my website back in 2005 when I was just 19 years old. I had very little money and only had a high school diploma to my name. <br /><br />Today, my website generates as much as 5 figures per month.<br /><br />I've been able to quit my day job and buy my first car... a Mercedes-Benz...at the age of 22! This is my definition of 'job security!'\"";
image[1] = "http://images2.marketingtips.com/imc-testimonials/aaron4.jpg";
firstname[1] = "Aaron";
lastname[1] = "\"Beats\" Bradley";
website[1] = "www.aaronbeats.com"; 

// TESTIMONIAL 3 ----------- 

headline[2] = "His online business brought in more than $90,000 - in the first six months!";
testimonial[2] = "\"Our first week we made a profit of more than $5,000 - and in less than six months online, the business grossed almost $92,000!<br /><br /> My product is delivered automatically, so I can run my business from anywhere in the world. I've finally got the freedom that I always desired from working for myself.<br /><br />IMC was the main driving force behind my copy! The course materials lay it all out step by step.\"";
image[2] = "http://images2.marketingtips.com/imc-testimonials/david_berriman2.jpg";
firstname[2] = "David";
lastname[2] = "Berriman";
website[2] = "www.Import-Mentor.co.uk"; 

// TESTIMONIAL 4 ----------- 

headline[3] = "After putting IMC's strategies to work, he's making more than $10,000 per month!";
testimonial[3] = "\"The site is bringing in over $10,000 a month -- and with some upcoming projects and new websites I have planned, that total will continue to increase. My wife and I recently moved into a very nice home, and I wouldn't have gotten it without my business -- and without IMC's help. \"";
image[3] = "http://images2.marketingtips.com/imc-testimonials/chris_bryant2.jpg";
firstname[3] = "Chris";
lastname[3] = "Bryant";
website[3] = "www.TheBryantAdvantage.com"; 

//calculate a random index
index = Math.floor(Math.random() * headline.length);

//display the quotation
document.write("<h2>" + headline[index] + "</h2>\n");
document.write("<img align=\"left\" style=\"margin: 2px; \" src=" + "\"" + image[index] + "\" />\n");
document.write("<span id=\"body_text\" style=\"display: inline; \"><br />" + testimonial[index] + "\n"); 
document.write("<br /><strong>" + firstname[index] + "&nbsp;" + lastname[index] + "</strong><br />\n"); 
document.write("<span style=\"font: 8pt Verdana; \">" + website[index] + "</span><br /><br />\n"); 
document.write("<a href=\"http://www.marketingtips.com/reality-101/t/890588\" style=\"text-transform: uppercase \">LEARN HOW TO BE LIKE " + firstname[index] + "</a></span>\n");