var quotes = new Array();// Auora Health Carequotes['AHC'] = [        {            heard: 'We no longer talk about the technical challenges; we talk about what is possible.',            cited: 'Duane Wesenberg, <br /><em>V.P. Enterprise Applications</em>, <br />Aurora Health Care <br /><img src="i/logo-Aurora.gif">'        }];// Advocate Health Carequotes['AHC2'] = [        {            heard: 'Advocate Health Care ranked number seven in the 2008 <em>InformationWeek 500</em>',            cited: '<br /><img src="i/logo-infoweek.gif">'        }];// Acuity Financialquotes['ACUITY'] = [        {            heard: "This solution's technology costs very little to maintain and provides agents with the single-entry system that's been  repeatedly called for by the insurance industry. Thanks to IBM and NVISIA, we have realized this vision.",            cited: 'Doug Thayer, <br /><em>Director of Information Technology</em>, <br />Acuity Financial <br /><img src="i/logo-Acuity.gif">'        }];// Affiliated Computers Servicesquotes['ACS'] = [        {            heard: "The quality of NVISIA's people is incredible, as is their work ethic.",            cited: 'Steve Waldon, <em>CTO, ACS</em>, <br />State and Local Solutions <br /><img src="i/logo-ACS.gif">',            used: '0'        },        {            heard: "We needed talent but also a partner that recognized and engaged our people seamlessly. NVISIA hired and trained developers while they led architecture, design, and implementation.",            cited: 'Steve Waldon, <em>CTO, ACS</em>, <br />State and Local Solutions <br /><img src="i/logo-ACS.gif">',            used: '0'        }];// Orbitzquotes['ORB'] = [        {            heard: 'NVISIA clearly understood how technology worked within our business and gave us a different perspective on how to make improvements.',            cited: 'Jack Staehler, <br /><em>Group Vice President</em>, <br />Orbitz Worldwide <br /><img src="i/logo-Orbitz.gif">'        }];function showQuote(elem){    var newQuote = false;    var test = quotes;    if(quotes[elem.id].length > 1){        for(var i=0; i<quotes[elem.id].length; i++){            if(quotes[elem.id][i].used == '0'){                newQuote = quotes[elem.id][i];                quotes[elem.id][i].used = '1';            }        }        if( !newQuote ){            for(var i=0; i<quotes[elem.id].length; i++){                quotes[elem.id][i].used = '0';            }            newQuote = quotes[elem.id][0];        }    } else {        newQuote = quotes[elem.id][0];    }    $('#heardQuote').html(newQuote.heard);    $('#heardCited').html(newQuote.cited);}