
var Quotes =
{
getRandomQuote: function()
{

var quote = [];
quote[0] = "&ldquo;Our financial concerns have always been addressed and we are building a beautiful addition within our original budget guidelines.&rdquo;";
quote[1] = "&ldquo;All of the church eldership and the members of the building expansion committee would unanimously recommend your services to other churches...&rdquo;";
quote[2] = "&ldquo;I highly recommend Childress &amp; Cunningham as a firm that designs structures that have eye-appeal, efficiently use space, and attain maximum value per cost.&rdquo;";
quote[3] = "&ldquo;The work has always been high quality and the best way to describe the associates of Childress &amp; Cunningham is as patient with construction novices.&rdquo;";
quote[4] = "&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[5] = "&ldquo;Since we started the project, you and your staff have &lsquo;bent over backwards&rsquo; to help us.&rdquo;";
quote[6] = "&ldquo;You were able to keep our design costs under control, thus allowing us to develop a plan and model to excite our congregation before investing a lot of money.&rdquo;";
quote[7] = "&ldquo;You were able to take our general goals and concepts and convert them into specific designs and plans.&rdquo;";
quote[8] = "&ldquo;You brought energy, integrity, sound business practices and a keen sense of design and artistry to our plans, all essential components for its successful completion.&rdquo;";
quote[9] = "&ldquo;Without your expertise and management, this challenging project could have never been completed in the short time frame we required.&rdquo;";
quote[10] = "&ldquo;The most impressive part is how fast this project went with such an outstanding result.&rdquo;";
quote[11] = "&ldquo;Childress &amp; Cunningham's associates bring a nice blend of art, science and common sense to the effort.&rdquo;";
quote[12] = "&ldquo;The building design has been noticed, not only by our people, but many of our neighbors. Everyone is very pleased.&rdquo;";
quote[13] = "&ldquo;Your alertness to cost effective measures without sacrificing design or value is most appreciated.&rdquo;";
quote[14] = "&ldquo;We continue to love our house and speak of your firm often to our friends (and anyone else who will listen).&rdquo;"
quote[15] = "&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[16] = "&ldquo;This is why you will continue to receive high recommendations from us.&rdquo;"
quote[17] = "&ldquo;You do wonderful work, and I am totally in love with her house!&rdquo;"
quote[18] = "&ldquo;Allan spent plenty of time answering our questions, and providing us with information to help us make more intelligent decisions about where we wanted to spend our money.&rdquo;"
quote[19] = "&ldquo;Allan's honesty and diligence gave us comfort during the construction project.&rdquo;"
quote[20] = "&ldquo;I'm really pleased with the way the plans have evolved. Looks like I'll be trying my hand at the first window frame next week. Things are getting very exciting!&rdquo;"
quote[21] = "&ldquo;Gotta tell ya- the more I saw, the happier and happier I became with my own little 2400 square foot not-so-big design. These fancy-schmancy places have nothing on you!&rdquo;"
quote[22] = "&ldquo;Thank you for all your outstanding assistance. You both went the extra mile, and that allowed the deal to get to the critical stage of execution.&rdquo;"
quote[23] = "&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[24] = "&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[25] = "&ldquo;We appreciate the attention to detail and the safety of our residents and employees.&rdquo;"
quote[26] = "&ldquo;The opportunity to plan for each phase of the construction has been crucial to maintain a timeline for completion of the projects.&rdquo;"
quote[27] = "&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[28] = "&ldquo;If we had to do it again, the first phone call I would make would be to Childress and Cunningham, Inc.&rdquo;"
quote[29] = "&ldquo;... in reference to the wonderful work that has been done by Childress and Cunningham ... I am happy to recommend the work of Childress and Cunningham.&rdquo;"
quote[30] = "&ldquo;I found your reliability to be absolute, your technical and creative skills to be of the highest level and further appreciated the fact that your fees were very moderate&rdquo;"
quote[31] = "&ldquo;I'm sure that there is a special place in heaven for architects who understand the meaning of the word 'budget'.&rdquo;"
quote[32] = "&ldquo;You helped us to gather our building requirements, refine those requirements over the years, to set priorities and phases, and to keep it all in a coherent master plan.&rdquo;"
quote[33] = "&ldquo;You were very helpful in helping us anticipate costs and masterful in our difficult dealings with the local Planning Commission, Architecture Review Board, and Historic Society.&rdquo;"
quote[34] = "&ldquo;I highly recommend Childress and Cunningham as a firm that designs structures that have eye-appeal, efficiently use space, and attain maximum value per cost.&rdquo;"
quote[35] = "&ldquo;You took the time to really get to know us and our needs and that, along with your considerable professional expertise, has led to the development of an outstanding plan.&rdquo;"
quote[36] = "&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[37] = "&ldquo;I have been in the unique position to see 870 Blair unfold as we have collaborated to bring the best in child day care service to this community.&rdquo;"
quote[38] = "&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;"
quote[39] = "&ldquo;The work has always been high quality and the best way to describe the associates of Childress and Cunningham is as patient with construction novices.&rdquo;"

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

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


rotate()
