function rnd_quote() {
noquotes = 3;
rndno = Math.round(Math.random()*(noquotes-1))+1;
if (rndno==3){
 document.write("<img src=\"images/open-quote.gif\" align=\"top\">&nbsp;");
 document.write("We aim to complete every journey safely and promptly with the comfort of the client in mind");
 document.write("&nbsp;<img src=\"images/close-quote.gif\" align=\"top\">");
} else if (rndno==2) {
 document.write("<img src=\"images/open-quote.gif\" align=\"top\">&nbsp;");
 document.write("Driving is our business");
 document.write("&nbsp;<img src=\"images/close-quote.gif\" align=\"top\">");
} else {
 document.write("<img src=\"images/open-quote.gif\" align=\"top\">&nbsp;");
 document.write("We aim to complete every journey safely and promptly with the comfort of the client in mind");
 document.write("&nbsp;<img src=\"images/close-quote.gif\" align=\"top\">");
}

}//rnd_quote()
