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 openWindow(src,w,h) {
  w+=30; h+=20;
  window.open(src,"popup",'scrollbars,width='+w+',height='+h+'');
}

function openShow(album) {
  slideshow = window.open('./slide_show.php?album='+ album,'slideshow','resizable,scrollbars,titlebar');
}

function rotate_testimonial() {
  if(document.getElementById("testimonials")) {
		x = Math.round(Math.random() * testimonials.length) - 1;
		if(x < 0) {
			x = 0;
		}
		
		var split = testimonials[x].split('<br>');
		
    document.getElementById("testimonials").innerHTML = '<div>' + split[0] + '<span class="close_quote">&#8222;</span></div> - ' + split[1];
    
    setTimeout("rotate_testimonial()", 17400);
  }
}



var testimonials = new Array("Perfect holiday in a fabulous property!<br>A FlipKey verified reviewer","Stunning! The perfect getaway! Hidden Paradise! If you're looking for a getaway in paradise, this is it! this Villa has all the comforts of a 5 Star Hotel! It's stunning view overlooking the sapphire blue water and white sand beach of the Caribbean, only steps from the back door, are too beautiful for words.<br>A FlipKey verified reviewer","This was a great place to relax and unwind! Stayed here 11 days. Jadee has created a beautiful atmosphere for her home very well equipped and nicely decorated. The sea Kayaks were fun to take out.<br>TripAdvisor Review","Fantastic in every way! Our stay at Casa Caribbean Soul was absolutely fantastic, in every way! It was the best vacation experience we've ever had... in Mexico or anywhere else in my various travel experiences in the Caribbean and Europe...and we can't wait to return again<br>TripAdvisor Report");
