/*
onload=function()
  {
  var txt=document.getElementById("random")
  txt.innerHTML=getaQuote();
  }

function get_random()
{
    var ranNum= Math.floor(Math.random()*5);
    return ranNum;
}

function getaQuote()
{
   var whichQuote=get_random();

    var quote=new Array(5)
     quote[0]="<p><q>Do you want to smile with confidence? Come and see the possibilities available to you through cosmetic dentistry.</q></p><p align='right'>-Some Guy1</p>";
     quote[1]="<p><q>Do you want to smile with confidence? Come and see the possibilities available to you through cosmetic dentistry.</q></p><p align='right'>-Some Guy2</p>";
     quote[2]="<p><q>Do you want to smile with confidence? Come and see the possibilities available to you through cosmetic dentistry.</q></p><p align='right'>-Some Guy3</p>";   
     quote[3]="<p><q>Do you want to smile with confidence? Come and see the possibilities available to you through cosmetic dentistry.</q></p><p align='right'>-Some Guy4</p>";
     quote[4]="<p><q>Do you want to smile with confidence? Come and see the possibilities available to you through cosmetic dentistry.</q></p><p align='right'>-Some Guy5</p>";
  
   return quote[whichQuote];
  }
*/
