
window.onload = function() {
	document.getElementById("shop_view").style.background = "url(./images/pic_" + page + ".jpg)";
	setOpacity(document.getElementById("news"),.8);
	
	rotate_testimonial();
}

function setOpacity( element, alpha )
{
  var style = element.style;
  if( style.MozOpacity != undefined ) { //Moz and older
    style.MozOpacity = alpha;
  }
  else if( style.filter != undefined ) { //IE
    style.filter = "alpha(opacity=0)";
    element.filters.alpha.opacity = ( alpha * 100 );
  }
  else if( style.opacity != undefined ) { //Opera
    style.opacity = alpha;
  }
}

var testimonials = new Array("\"Lisa Marie is back!!!! I have been going her for seven years now and Lisa Marie was the first to give me a microdermabrasion and I love it, she is the best!!!\"<br/><br/>- Lynn, Livermore<br/>Review on CitySearch",
														 "\"Thank you Lizz! As always, you gave me such a wonderful massage. I really loved the bodywork!\"<br/><br/>- Jes, Livermore<br/>Review on YELP",
														 "\"Debbie has been doing my hair for about ten years and she's amazing. I've had  many cuts and colors over the years and they've all been great.\"<br/><br/>- Katherin, San Jose, CA<br/>Review on YELP",
														 "\"Debbie, this is the best hair cut and most beautiful color I have ever had! You did exactly what I wanted and great price. Thank you!\"<br/><br/>- Ashley, Dublin",
														 "\"My entire family has been going to Debbie for well over a couple years now! We love her and she has such a fun and bubbly personality.\"<br/><br/>- Meredith, Berkeley, Ca<br/>Review on YELP",
														 "\"I have had my hair cut, dyed, nails, facial, and makeup done in this salon. Debbie is fantastic with hair and an expert in color. Highly recommend!\"<br/><br/>- Mae, Livermore, Ca<br/>Review on YELP",
														 "\"I just recieved the best pedicure of my life. Hands down (feet up) Sherry is the most talented technician I have ever experienced.\"<br/><br/>- Bob, Livermore<br/>Review on CitySearch");


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

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

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