﻿


//--quotes--


function set_quote() {

    arQuotes = new Array();

    var strTop = "<table border=0 class=quotes align=center><tr>"
              + "<td style=vertical-align:top;><img src=http://65.61.6.100/images/quotes_start.gif alt=quotes width=39 height=29 /></td>"
              + "<td style=width:200px;padding-top:10px;>"

    arQuotes[0] = "I appreciate the way that Compass kept in touch with my husband and I and remained"
                   + " very open and patient with our questions. Compass representatives were very easy to"
                   + " work with and helped us understand the relocation process."
                   + "</td><td style=vertical-align:bottom;><img src=http://65.61.6.100/images/quotes_end.gif alt=quotes width=39 height=29 /></td>"
                   + "</tr><tr><td colspan=3 style=padding-left:45px;font-style:italic;><br />"
                   + " Nick and Mary, Elgin IL"

    arQuotes[1] = "Compass addressed all our needs.   We were not looking forward to relocating, but with Compass, it was much easier" 
                   + " than we thought.   We would recommend them to anyone."
                   + "</td><td style=vertical-align:bottom;><img src=http://65.61.6.100/images/quotes_end.gif alt=quotes width=39 height=29 /></td>"
                   + "</tr><tr><td colspan=3 style=padding-left:45px;font-style:italic;><br />"
                   + " Stephanie and Chistopher, Mount Prospect IL"

    arQuotes[2] = "Friendly, professional, experienced and competitively priced are some of the adjectives I would use to describe Compass Relocation."
                   + " If you are looking to relocation your family or your entire company, Compass is the first call you should make."
                   + "</td><td style=vertical-align:bottom;><img src=http://65.61.6.100/images/quotes_end.gif alt=quotes width=39 height=29 /></td>"
                   + "</tr><tr><td colspan=3 style=padding-left:45px;font-style:italic;><br />"
                   + " Alan S., Saint Charles IL"

    arQuotes[3] = "We didn't have the largest relocation needs, but Compass made us feel right at home and answered all our questions.   Their courteous"
                   + " staff made relocating that much better and we will be using them again." 
                   + "</td><td style=vertical-align:bottom;><img src=http://65.61.6.100/images/quotes_end.gif alt=quotes width=39 height=29 /></td>"
                   + "</tr><tr><td colspan=3 style=padding-left:45px;font-style:italic;><br />"
                   + " Colleen and Marcus, Skokie IL"

    var strBottom = "</td></tr></table>"

    document.getElementById('div_quote').innerHTML = strTop + arQuotes[ select_quote() ] + "\n\n" + strBottom;

}



var maxHeaders = 4; 


function select_quote() {

    var randomInt = Math.floor(Math.random() * maxHeaders);

    return randomInt;
}

