
var Quotes =
{
getRandomQuote: function()
{

var quote = [];
quote[0] = "&ldquo;Since we started the project, you and your staff have bent over backwards to help us. The building design has been noticed, not only by our people, but many of our neighbors. Everyone is very pleased.&rdquo;";
quote[1] = "&ldquo;Our financial concerns have always been addressed and we are building a beautiful addition within our original budget guidelines.&rdquo;";
quote[2] = "&ldquo;In our congregation we did not have anyone with any real experience in this area, so we had to find someone that we could trust. Your firm was recommended very highly.&rdquo;";
quote[3] = "&ldquo;Your alertness to cost effective measures without sacrificing design or value is most appreciated.&rdquo;";
quote[4] = "&ldquo;We are frequently asked about Childress &amp; Cunningham because it is so unusual for the client to be happy at the end of a project.&rdquo;"
quote[5] = "&ldquo;You should know that our prospective residents' reaction to the new floor plans have been very enthusiastic. We now have six people waiting for the next conversions.&rdquo;"
quote[6] = "&ldquo;You showed tremendous patience during our learning curve and helped us actualize the vision of giving our market just what they are looking for.&rdquo;"
quote[7] = "&ldquo;I would not hesitate for a moment in recommending your firm to anyone in need of architectural and/or construction management services.&rdquo;"
quote[8] = "&ldquo;I'm sure that there is a special place in heaven for architects who understand the meaning of the word 'budget'.&rdquo;"
quote[9] = "&ldquo;Everyone has been very impressed with how you responded to our needs with wisdom and creativity within the confines of the building.&rdquo;"
quote[10] = "&ldquo;I take great pleasure in mentioning to our friends and funders your name, as I explain to them how perceptive you have been to take our vision and help us make it a reality.&rdquo;"


 
var maxLength = quote.length;
var position = Math.floor(Math.random() * maxLength);
return Quotes.displayQuote("quoteIndex", quote[position]);
},
displayQuote: function(ctl, quote)
{
ctl = document.getElementById(ctl);
ctl.innerHTML = quote;

}
};
function rotate(){
Quotes.getRandomQuote();
setTimeout("rotate()",6800)
}


rotate()

