
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("\"When I found Ciao Bella, I was so thankful . . You have the most talented hair stylists. I always know I am in good hands and will leave looking perfect.\"<br/><br/>- Robina, Gainesville",
														 "\"Thank you Michael! As always, you have given me such a wonderful haircut!\"<br/><br/>- Sandra, Gainesville",
														 "\"It was my first visit to your salon and you and your staff made me feel so special. I love my hair and will tell all my friends about your salon, thank you.\"<br/><br/>- Maggie, Gainesville",
														 "\"Michael, this is the best hair cut and most beautiful color I have ever had! You did exactly what I wanted and for a great price. Thank you Ciao Bella, you are amazing and super friendly!\"<br/><br/>- Ashley, Gainesville",
														 "\"Michael and Tina, you have such a great salon, I love the atmosphere there!  You are always so welcoming, and of course I ALWAYS love my hair.\"<br/><br/>- Carolyn, Gainesville",
														 "\"Wow, Michael, I couldn't be more pleased!  I have never felt so beautiful in my life.  Thank you for everything.\"<br/><br/>- Laurie, Newberry",
														 "\"I just had to e-mail to let you know what an awesome experience I had in your salon today.  Your stylist took such great care of me.  My hair looks beautiful.\"<br/><br/>- Carlisle,  High Springs",
														 "\"I am grateful to a friend who recommended Ciao Bella, as I was looking for a small town salon with a big city feel. Whew, I count myself fortunate to have found this salon.\"<br/><br/>- Adreinne,  Gainesville",
														 "\"Great experience! Staff was friendly and polite. The salon was clean and nice and the price was great. Definitely a must for anyone looking for a fantastic haircut.\"<br/><br/>- JB,  Gainesville",
														 "\"Clean, modernly designed salon, and stylists were attentive! Great salon, give this place a try.\"<br/><br/>- Katie,  Gainesville",
														 "\"Best hair cut and most beautiful color I have ever had! They did exactly what I wanted for a great price.  Amazing and super friendly!\"<br/><br/>- Brooke,  Gainesville");


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');
}