 
// JavaScript Document
 
// Set up the text files to be used.
var theText = new Array() // do not change this
 
 
theText[0] = '<p class="quotation">"Yoga heals nourishes and challenges us. The practice infiltrates every corner of our lives."<br><span class="qauthor">Valerie Jeremijenko</span></p>';
theText[1] = '<p class="quotation">"Yoga practise heals and energizes the body and fosters a calm and strong  mind which can open your day to day life to inspiring and fulfilling experiences"<br><span class="qauthor">  Erich Shiffmann</span></p>';
theText[2] = '<p class="quotation">"As we develop a yoga practice involving postures breath-work and meditation, we can deepen our relationship with ourselves in our daily practice"<span class="qauthor"> Sarah Powers</span></p>';
 
// 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(){
//This a wrapper for the text array it can be changed if need
document.write('<p class="thetext">'+theText[whichText]+'</p>');
}