

function getQuote()
{
    var quotes = new Array();

    quotes[0] = "I would like to take this opportunity to let you know that the service I have received from the support desk has been excellent. Accenture.";
    quotes[1] = "Workstation Safety Plus has played an important role in the achievement of 100% compliance with our Contact Centre training and self-assessment requirements. Colin Kostyrka, Indesit.";
    quotes[2] = "I feel sure the training and assessment on this course helps all our staff avoid discomfort or injury in their working environment. Rex Langsman, PAREXEL International Ltd.";
    quotes[3] = "Workstation Safety Plus is an extremely useful tool in the interest of the health and safety of PAREXEL staff. Rex Langsman, PAREXEL International Ltd.";
    quotes[4] = "Workstation Safety Plus has helped us reduce injuries by 50% and a reduction in injury costs of 75%. Nathan Williams, Parsons Corporation.";

    var randomNumber = Math.floor(Math.random() * 5);

    return quotes[randomNumber];

}

document.getElementById('Quote').innerHTML = getQuote();