/* This JavaScript (Random Quotes) developed by Scott Clark
The Source is available at http://www.clarksco.com/blog/
Copyright 2005 Clark Consulting */

var num_of_quotes = 7;
quotes = Math.floor (num_of_quotes * Math.random());

if (quotes==0) {
title="Steve Schulte, PE, Vice President, The Brambleton Group";
body="Urban is one of the key consultant team members that have made Brambleton such a success. Without their expertise, depth of resources and vast engineering knowledge, Brambleton would never be where it is today." ;
}

if (quotes==1) {
title="Chad DuBeau, Trammell Crow Residential";
body="We depend on Urban in many ways, but particularly for their expertise, high quality and fast turnarounds in conceptual designs for our clients, investors and partners – as well as the states, counties and municipalities we present projects to today.";
}

if (quotes==2) {
title="Bruce Gould, PE, Vice President – The Peterson Companies";
body="Urban is a highly professional company and they're always there for you.";
}

if (quotes==3) {
title="Peter Johnston, Senior Vice President, Regional Manager, Boston Properties";
body="For over 10 years, Boston Properties has relied upon Urban for their ability to deliver the highest quality service. For depth of talent, design excellence and land-use expertise across the region, they are without peer.";
}

if (quotes==4) {
title="Hobie Mitchel, President, Lansdowne Development Group";
body="Urban people all give us excellent individual effort, with excellent work and analyses on the front and back end. But the real benefit is the company behind them, where you can pull other resources in when you need them." ;
}

if (quotes==5) {
title="John Harris, Division Vice-President, Toll Brothers, South Riding";
body="We've worked with Urban for several years, and we appreciate their expertise and good reputation in this corridor. They have planned and engineered the majority of South Riding and I couldn't be happier with their work.";
}

if (quotes==6) {
title="Roy Barnett, Sr. Vice-President Planned Communities and Acquisitions";
body="Urban and its staff commit the time and the support, above and beyond the scope of any contract.  They too believe in the strength that a relationship can add to any project. We are proud to consider Urban a partner in our commitment to planning and delivering the best in community developments.";
}
document.write('<p class="quotation">');
document.write(''+ body +'');
document.write('</p><p class="author">');
document.write(''+ title +'');
document.write('</p>');