// JavaScript Document

function getBanner()
{
   var pagename = document.getElementsByTagName('h1');
   document.write ('<img src="/images/NEWbanners/' + pagename[0].innerHTML + '.jpg">'); 
}

function random_text(){
  var mytext=new Array()
  mytext[0]="<div class='title'>Carolyn Turner</div><p class='quotes'><img src='/images/quotes-start.gif' />&nbsp;&nbsp;We wouldn’t hesitate to recommend Oakwood to friends and family. Thank you for a job well done.&nbsp;&nbsp;<img src='/images/quotes-end.gif' /></p>"
  mytext[1]="<div class='title'>Guy and Meredith Charlebois</div><p class='quotes'><img src='/images/quotes-start.gif' />&nbsp;&nbsp;Not a day goes by that we do not walk into our new kitchen and marvel at the beauty of it and the excellence of the work done to make it a reality...&nbsp;&nbsp;<img src='/images/quotes-end.gif' /></p>"
  mytext[2]="<div class='title'>Larry and Carol Lethbridge Hudon</div><p class='quotes'><img src='/images/quotes-start.gif' />&nbsp;&nbsp;Our kitchen is more than the dream that we hoped it<br />would be...&nbsp;&nbsp;<img src='/images/quotes-end.gif' /></p>"
  mytext[3]="<div class='title'>Michelle and Glen</div><p class='quotes'><img src='/images/quotes-start.gif' />&nbsp;&nbsp;We now know why Oakwood has been in business for so many years and why we see so many of their signs in our neighbourhood.&nbsp;&nbsp;<img src='/images/quotes-end.gif' /></p>"
  mytext[4]="<div class='title'>Richard Erdeg</div><p class='quotes'><img src='/images/quotes-start.gif' />&nbsp;&nbsp;Our house looks great! The curiosity of neighbours and friends has transformed to compliments and enthusiastic praise upon viewing. Thank you OakWood!&nbsp;&nbsp;<img src='/images/quotes-end.gif' /></p>"
  mytext[5]="<div class='title'>Heather Hay Charron</div><p class='quotes'><img src='/images/quotes-start.gif' />&nbsp;&nbsp;I remember at the beginning when someone from Oakwood said, 'You'll be glad to see the last of us when this is done!'.  That couldn't be further from the truth.  This has been the adventure of a lifetime!  I'll miss everyone.&nbsp;&nbsp;<img src='/images/quotes-end.gif' /></p>"

  var ry=Math.floor(Math.random()*mytext.length)

  if (ry==0)
     ry=1
     document.write(mytext[ry])
}

function random_text2(){
  var mytext2=new Array()
  mytext2[0]="<p class='quotes'><img src='/images/quotes-start2.gif' />&nbsp;&nbsp;We wouldn’t hesitate to recommend Oakwood to friends and family. Thank you for a job well done.&nbsp;&nbsp;<img src='/images/quotes-end2.gif' /><span>Carolyn Turner</span></p>"
  mytext2[1]="<p class='quotes'><img src='/images/quotes-start2.gif' />&nbsp;&nbsp;Not a day goes by that we do not walk into our new kitchen and marvel at the beauty of it and the excellence of the work done to make it a&nbsp;reality...&nbsp;&nbsp;<img src='/images/quotes-end2.gif' /><span>Guy and Meredith Charlebois</span></p>"
  mytext2[2]="<p class='quotes'><img src='/images/quotes-start2.gif' />&nbsp;&nbsp;Our kitchen is more than the dream that we hoped it<br />would be...&nbsp;&nbsp;<img src='/images/quotes-end2.gif' /><span>Larry and Carol Lethbridge Hudon</span></p>"
  mytext2[3]="<p class='quotes'><img src='/images/quotes-start2.gif' />&nbsp;&nbsp;We now know why Oakwood has been in business for so many years and why we see so many of their signs in our neighbourhood.&nbsp;&nbsp;<img src='/images/quotes-end2.gif' /><span>Michelle and Glen</span></p>"
  mytext2[4]="<p class='quotes'><img src='/images/quotes-start2.gif' />&nbsp;&nbsp;Our house looks great! The curiosity of neighbours and friends has transformed to compliments and enthusiastic praise upon viewing. Thank you OakWood!&nbsp;&nbsp;<img src='/images/quotes-end2.gif' /><span>Richard Erdeg</span></p>"
 mytext2[5]="<p class='quotes'><img src='/images/quotes-start2.gif' />&nbsp;&nbsp;I remember at the beginning when someone from Oakwood said, 'You'll be glad to see the last of us when this is done!'.  That couldn't be further from the truth.  This has been the adventure of a lifetime!  I'll miss everyone.&nbsp;&nbsp;<img src='/images/quotes-end2.gif' /><span>Heather Hay Charron</span></p>"

  var ry=Math.floor(Math.random()*mytext2.length)

  if (ry==0)
     ry=1
     document.write(mytext2[ry])
}
