﻿
// NOTE:  any double quotes must have a backslash preceding or the script will not work.
//        Also, make sure there is an attribution ("attribs") for each quote,
//        and that the index for the attribution matches the quote.

var quotes=new Array()
var attribs=new Array()

quotes[0] = "Having organized hundreds of events in both the public and private sectors, JWI is one of the most professional and well-managed event planning firms I have ever had the pleasure of working with. When there are scores of moving parts involved in your event, Jane Wade is just the planning partner you want standing beside you: calm, smart, organized, realistic, professional. I recommend JWI's services without reservation.";
attribs[0] = "";

quotes[1] = "Jane's expertise and professionalism make her a pleasure to work with. Her high standards and customer advocacy ensure an event that exceeds expectations. Jane is an integral part of our events team.";
attribs[1] = "";

quotes[2] = "Jane contributes years of experience and a \"can do\" attitude to every event she plans. She brings a pragmatic, highly productive approach to our meetings, anticipates our needs and then executes flawlessly. We know we are in good hands if she is running the show.";
attribs[2] = "";

quotes[3] = "Jane is not just a vendor, she's a real partner who helps make our meetings go smoothly every time. When we have an event that needs to be done right, we turn to JWI.";
attribs[3] = "";

quotes[4] = "Jane leaves no stone unturned. You can count on her to take care of every detail. She is always great to work with.";
attribs[4] = "";

quotes[5] = "JWI Events provides exceptional services. I have hired Jane Wade for several of my client’s large leadership development global meetings. Her attention to detail, knowledge of event planning, and high level of customer focus gives my clients an advantage and provides for a unique learning experience. She is a true partner to my business."
attribs[5] = ""

var quoteCount = quotes.length;
var preQuote = "<img src='images/leftquote.jpg' border='0' alt='' />&nbsp;";
var postQuote = "<img src='images/rightquote.jpg' border='0' alt='' />";

function ShowQuote()
{
    var quoteIndex=Math.round(Math.random()*(quoteCount-1));
    document.write("<p>" + preQuote + quotes[quoteIndex] + postQuote + "</p><p class='testimonysig'>" + attribs[quoteIndex] + "</p>");
}

function ListQuotes()
{
    for (i=0;i<=quoteCount-1;i=i+1)
    {
        document.write("<p>" + preQuote + quotes[i] + postQuote + "</p><br /><p class='testimonysig'>" + attribs[i] + "</p><br /><hr /><br />");
    }   
}
