    /*
        quote box
        a little script to switch out the quotes via an ajax call
    */
    var Quote = 
    {
        quote_div: 'homequote',
        quote: '',
        quote_id: 0,
        quotes: new Array
            (
                "", //emnpty
                "If you have not talked to T3CI on lessons learned from these pilots, you should. T3CI is successfully managing a software-as-a-service (SaaS) model to help CP companies gain insights on inventory movement. This type of inventory fingerprinting is essential to better understanding promotion execution.<span class=\"name\">- Lora Cecere<br/>AMR Research</span>", // 1- bayer
                "T3Ci is offering exactly what the market needs: the option of a service in place of a costly enterprise system.<span class=\"name\">- Sara Shah<br/>ABI Research</span>", // 2- clorox
                "If you have not talked to T3CI on lessons learned from these pilots, you should. T3CI is successfully managing a software-as-a-service (SaaS) model to help CP companies gain insights on inventory movement. This type of inventory fingerprinting is essential to better understanding promotion execution.<span class=\"name\">- Lora Cecere<br/>AMR Research</span>", // 3 - gillette
                "T3Ci is offering exactly what the market needs: the option of a service in place of a costly enterprise system.<span class=\"name\">- Sara Shah<br/>ABI Research</span>", // 4 - gsk
                "If you have not talked to T3CI on lessons learned from these pilots, you should. T3CI is successfully managing a software-as-a-service (SaaS) model to help CP companies gain insights on inventory movement. This type of inventory fingerprinting is essential to better understanding promotion execution.<span class=\"name\">- Lora Cecere<br/>AMR Research</span>", // 5 - hp
                "We have been working with T3Ci for the past year.  What sets them apart from other companies in this space is their keen understanding of the business – they know RFID and have built business applications, rather than technical ones, which have helped us look for ways to create value with our RFID investment.<span class=\"name\">#</span>", // 6 kao
                "T3Ci is offering exactly what the market needs: the option of a service in place of a costly enterprise system.<span class=\"name\">- Sara Shah<br/>ABI Research</span>", // 7 - kraft
                "If you have not talked to T3CI on lessons learned from these pilots, you should. T3CI is successfully managing a software-as-a-service (SaaS) model to help CP companies gain insights on inventory movement. This type of inventory fingerprinting is essential to better understanding promotion execution.<span class=\"name\">- Lora Cecere<br/>AMR Research</span>", // 8 - novartis
                "T3Ci was well ahead of the other companies we evaluated and demonstrated a clear understanding of how to eventually get value from EPC data across the supply chain.<span class=\"name\">- Steve Rehling<br/>Procter & Gamble</span>", // 9 p&g
                "What is invaluable about T3Ci’s approach is the community of learning — so we all don’t learn in parallel and we all don’t make the same mistakes.<span class=\"name\">- Kim Kingsley<br/>Schering-Plough Corporation</span>", // 10 spc
                "T3Ci is offering exactly what the market needs: the option of a service in place of a costly enterprise system.<span class=\"name\">- Sara Shah<br/>ABI Research</span>", // 11 - spectrum
                "I would argue that the biggest benefit received from Retail Solutions assistance is the ability to demonstrate the potential return on investment for RFID to my own internal management. I had the opportunity to present Retail Solutions first report to my Sr. Management and Directors...the result has been overwhelming. What to date has been viewed as another expense of doing business with retailers, suddenly emerged as a tool to increase productivity, accountability, and the bottom line.<span class=\"name\">- Don Stone Sr.<br/>Stemilt Growers Inc.</span>", // 12 stemlit
                "We have been very pleased with our working relationship with T3Ci. They have proven to be both an innovative and flexible partner in the RFID space, and have allowed us to gain insights into the potential benefits of RFID-data much faster than we would have been able to do on our own.<span class=\"name\">- Simon Ellis Supply<br/>Unilever.</span>" // 13 unliver
                
            ),
        
        fadeQuote: function()
        {
            new Effect.Fade(Quote.quote_div, 
            { // the id of the <DIV> containing the photos 
                duration: 1, 
                
                afterFinish: function() 
                { 
                    $(Quote.quote_div).innerHTML = Quote.getQuote()
                    setTimeout('Quote.showQuote()',50);
                } 
            });
        },
        
        showQuote: function()
        {
            new Effect.Appear(Quote.quote_div, 
            {
                duration: 1,
                queue:'end'
            });
        },
        
        setQuote: function(id)
        {
            Quote.quote_id = id;
            Quote.quote = Quote.quotes[id];
        },
        
        getQuote: function()
        {
            return Quote.quote;
        }
    };
    
    function switchQuote(quote_id)
    {
        if(quote_id != -1)
        {
            Quote.setQuote(quote_id);
            Quote.fadeQuote();
        }
    }