var mydate=new Date()
var year=mydate.getYear()
if (year < 1000)
year+=1900
var day=mydate.getDay()
var month=mydate.getMonth()
var daym=mydate.getDate()
if (daym<10)
daym="0"+daym
var dayarray=new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday")
var montharray=new Array("January","February","March","April","May","June","July","August","September","October","November","December")

window.onload = function() {
	var mozilla = false; var ie = false;
  if (document.all) { ie = true; }
  else if (document.getElementById) { mozilla = true; }

	//document.getElementById('date').innerHTML = dayarray[day]+", "+montharray[month]+" "+daym+", "+year;

  rotate_testimonial();



function rotate_testimonial() {
  if(document.getElementById("testimonial")) {
		x = Math.round(Math.random() * testimonials.length) - 1;
		if(x < 0) {
			x = 0;
		}
    document.getElementById("testimonial").innerHTML = testimonials[x];
    setTimeout("rotate_testimonial()", 5900);
  }
}
}

var testimonials = new Array("Lizz, Thank you for the wonderful esalen massage. It was my first time experiencing an Esalen Massage and LOVED IT! See you next month!<br/><br/> Jes, Livermore, Ca<br/>","Thank you for the BEST MASSAGE in my life. The Esalen massage was actually a very healing experience and that I didn't expect!<br/><br/>Joan, Berkeley, Ca<br/>","Esalen massage is perfect for climbers and sports enthusiasts. The long stretches and motion during the Esalen massge is the BEST for a quick recovery! Thank you Lizz, you are the BEST MASSAGE THERAPIST!<br/><br/> John, El Cerrito, Ca");
