/* START Javascript for Quotes - Testimonial Rotator */
//<![CDATA[
var quote=new Array();
  quote[0]='<i>Thank you so much for all your help! The chairs were delivered already. I am very happy with your service and will definitely use your online site again.<br /> ~ Jennifer</i>';
  quote[1]='<i>I got my order yesterday and the items are absolutely gorgeous!!!! Thank you!!!<br /> ~ Rich</i>';
  quote[2]='<i>Thank you. Your professional courtesy is appreciated and when I need more back jacks, or know of others who want them, I will recommend you (Four Gates).<br /> ~ R K</i>';
  quote[3]='<i>Christopher, Thank you I have received my items. I enjoy them everyday. Thax.<br /> ~ Saadya</i>';
  quote[4]='<i>I just wanted to tell you how wonderful your website is. Thank you for all of the good feelings that live here.<br /> ~ Gail</i>';
  quote[5]='<i>Dear John Thank you for your response to my query. The parcel was delivered today and I am absolutely delighted with it. Regards,<br /> ~ Alison</i>';
  quote[6]='<i>Hi, I received the lovely gold and stone earrings and am very pleased. Thank you. I will continue to enjoy visiting your website. warmest regards,<br /> ~ Mary</i>';

var speed=7000;    /* this is the time in milliseconds adjust to suit */
var q=0;

function showQuote() {

     document.getElementById("quotes").innerHTML=quote[q];
     q++;
if(q==quote.length) {
     q=0;
  }
}
setInterval('showQuote()',speed);
/* END Javascript for Quotes - Testimonial Rotator */

/* START JavaScript for RANDOM IMAGE - Teachers */
var theImages = new Array() // do not change this
theImages[0] = 'graphics/00000002/teacher_abraham-hicks.png'
theImages[1] = 'graphics/00000002/teacher_andrew_weil.png'
theImages[2] = 'graphics/00000002/teacher_ann-mcindoo.png'
theImages[3] = 'graphics/00000002/teacher_bruce-lipton.png'
theImages[4] = 'graphics/00000002/teacher_caroline-myss.png'
theImages[5] = 'graphics/00000002/teacher_christopher-may.png'
theImages[6] = 'graphics/00000002/teacher_dalai-lama.png'
theImages[7] = 'graphics/00000002/teacher_gregg-braden.png'
theImages[8] = 'graphics/00000002/teacher_jack-canfield.png'
theImages[9] = 'graphics/00000002/teacher_jack-kornfield.png'
theImages[10] = 'graphics/00000002/teacher_john-bradshaw.png'
theImages[11] = 'graphics/00000002/teacher_jon-kabat-zinn.png'
theImages[12] = 'graphics/00000002/teacher_lama-surya-das.png'
theImages[13] = 'graphics/00000002/teacher_louise-hay.png'
theImages[14] = 'graphics/00000002/teacher_pema-chodron.png'
theImages[15] = 'graphics/00000002/teacher_ram-dass.png'
theImages[16] = 'graphics/00000002/teacher_roger-woolger.png'
theImages[17] = 'graphics/00000002/teacher_sharon-salzberg.png'
theImages[18] = 'graphics/00000002/teacher_shinzen-young.png'
theImages[19] = 'graphics/00000002/teacher_shiva-rea.png'
theImages[20] = 'graphics/00000002/teacher_thich-nhat-hanh.png'
theImages[21] = 'graphics/00000002/teacher_torkom-saraydarian.png'
theImages[22] = 'graphics/00000002/teacher_wayne-dyer.png'
theImages[23] = 'graphics/00000002/teacher_michael-beckwith.png'
theImages[24] = 'graphics/00000002/teacher_master-morya.png'

var j = 0
var p = theImages.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages[i]
}
var whichImage = Math.round(Math.random()*(p-1));
function showImage(){
document.write('<img src="'+theImages[whichImage]+'">');
}
/* END JavaScript for RANDOM IMAGE - Teachers */

