
// set number of items first
var items = 4;

function get_random()
{
    var ranNum= Math.floor(Math.random()*items);
    return ranNum;
}

function getaQuote()
{
   var whichQuote=get_random();

    var quote=new Array(5)
     quote[0]="<img src='images/sm_property_management.jpg' alt='' width='156' height='156' border='0'></div><br>Our <a href='property_management.html'>property management</a> division concentrates on your commercial activities to ensure the efficient and effective management of the site. Through liasion with tenants...<br><br><div align='right'><a href='property_management.html'>Read more >></a>";
     quote[1]="<img src='images/sm_facilities_management.jpg' alt='' width='156' height='156' border='0'></div><br>Our <a href='facilities_management.html'>facilities management</a> division is considered our core business. We provide the full range of project management and facilities management services...<br><br><div align='right'><a href='facilities_management.html'>Read more >></a>";

     quote[2]="<img src='images/sm_property_consulting.jpg' alt='' width='156' height='156' border='0'></div><br>Our expertise in the operational side of property has led us to develop a fully comprehensive pro-forma <a href='consulting_services.html'>consulting service</a> for due diligence exercise...<br><br><div align='right'><a href='consulting_services.html'>Read more >></a>";

     quote[3]="<img src='images/sm_sectional_title.jpg' alt='' width='156' height='156' border='0'></div><br>Our <a href='sectional_title.html'>sectional title</a> division handles a range of bodies corporate and homeowners associations in the Cape Peninsula. Our services include all duties required of trustees...<br><br><div align='right'><a href='sectional_title.html'>Read more >></a>";
  
  document.write("<div align='center'>" + quote[whichQuote] + "</div>");
  }






