// JavaScript Document

// Set up the text files to be used.
var theText = new Array() // do not change this


theText[0] = 'Besides restoring my facial appearance, the surgery has improved my self-esteem my confidence and my self-enthusiasm. <span class="name" style="margin-top:5px;">- Joyce</span>';
theText[1] = 'To anyone out there contemplating the big   step   of cosmetic surgery, I can only say, Go for it. <span class="name">- Diane</span>';
theText[2] = 'Thank you for being such a good and caring doctor... I know that I am safe when I am in your hands. <span class="name">- Nirali</span>';
theText[3] = 'I have made positive changes in my total appearance to reflect the &#39; real me.&#39; These changes are more than skin deep because I have become the person I have always intended to be. <span class="name">- Niti</span>';

// do not edit anything below this line

var j = 0
var p = theText.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Array()
   preBuffer[i].src = theText[i]
}
var whichText = Math.round(Math.random()*(p-1));
function showText(){
document.write('<p class="testamonial">'+theText[whichText]+'</p>');
}

