// Random Quosts
function randRange(lowVal,highVal) {
     return Math.floor(Math.random()*(highVal-lowVal+1))+lowVal;
}
// Set up quote items -> Change randRange(1,[N])  where N is number of quotes

var randVal = randRange(1,[3]);

//Project link inserted here.
if (randVal == 1) {
     document.write('<p>&nbsp;</p><p class="quote_big">&#8220;&#8212; they are a credit to the industry&#8221;</p><p>&nbsp;</p><p class="quote_small">&quot;I have been delighted with the consistently professional approach that Macmillan and Wright have shown to all our projects both large and small, they are a credit to the industry&quot;</p><br><p  class="quote_cite"><em>Tim Barnard, UK Property Manager<br>Kwik-Fit</em></p><p>&nbsp;</p>')
} else if (randVal == 2) {
     document.write('<p>&nbsp;</p><p class="quote_big">&#8220;&#8212; high standard of workmanship&#8221;</p><p>&nbsp;</p><p class="quote_small">&quot;There are very few contractors who have produced such a high standard of workmanship and attended to our projects so well.&quot;</p><br><p  class="quote_cite"><em>Andrew J Cramer-Webb, Property Director - P&amp;H Limited</em></p><p>&nbsp;</p>')
} else if (randVal == 3) {
     document.write('<p>&nbsp;</p><p class="quote_big">&#8220;&#8212; attention to detail&#8221;</p><p>&nbsp;</p><p class="quote_small">&quot;I knew in handing the work to Macmillan &amp; Wright that the project was in safe hands. I was greatly impressed with the efficiency of the work and am extremely pleased with both the high standard of finish and attention to detail.&quot;</p><br><p  class="quote_cite"><em>David Dawson, Head of Property - CEVA Logistics UK</em></p><p>&nbsp;</p>')
}