// JavaScript Document

function setLinks(){
	
}
var quoteNum
var quotes = new Array(
				"<h1>&ldquo;Healing waters is Heaven on Earth! The tranquility of the spa greets you as soon as you open the door.&rdquo;</h1><p>-Meghan Smith</p>",
				"<h1>&ldquo;I love laser hair removal! Results have been unbelievable!&rdquo;</h1><p>-Suzanne Buchanan</p>",
				"<h1>&ldquo;I like to come here because of the skill level of the RN's&hellip;they create magic with my skin.&rdquo;</h1><p>-Kirsten Nyberg</p>",
				"<h1>&ldquo;The relaxing atmosphere is enticing and the professional employees are very knowledgeable and most helpful.&rdquo;</h1><p>-Kim Garci</p>",
				"<h1>&ldquo;The place is very wonderful and very relaxing. I feel like I'm well taken care of whenever I come to Healing Waters.&rdquo;</h1><p>-Jamie Wilkerson, VIP</p>",
				"<h1>&ldquo;My needs are always met when I come to Healing Waters.&rdquo;</h1><p>-Jamie Wilkerson, VIP</p>",
				"<h1>&ldquo;I have been to many spas in the Triangle area, and Healing Waters offers the best service of any spa I have visited. The service is second to none!&rdquo;</h1><p>-Megan Gray</p>",
				"<h1>&ldquo;Treatments are personalized to ensure that I experience the best possible results. Thank you Healing Waters!&rdquo;</h1><p>-Megan Gray</p>",
				"<h1>&ldquo;The Pure MD&trade;products are first class. They deliver noticeable results with the first use.&rdquo;</h1><p>-Megan Gray</p>",
				"<h1>&ldquo;Healing Waters is my salvation. It has become part of my weekly Saturday ritual.&rdquo;</h1><p>-Carolyn Aaronson, VIP</p>",
				"<h1>&ldquo;The staff are so friendly, warm, bubbly, and accommodating. They make everyone feel at home like they are in their own living room!&rdquo;</h1><p>-Carolyn Aaronson, VIP</p>",
				"<h1>&ldquo;Healing Waters is the ONE place I can go to let my cares and worries melt away. You get personal attention, first class services by the best in the business.&rdquo;</h1><p>-Sierra Patricia Scott <br />Host, &ldquo;It's All Good!&rdquo; <br />KPTS Ch. 8 Fridays, 8pm</p>",
				"<h1>&ldquo;No matter how many times you have been a customer you are ALWAYS treated like a VIP.&rdquo;</h1><p>-Sierra Patricia Scott <br />Host, &ldquo;It's All Good!&rdquo; <br />KPTS Ch. 8 Fridays, 8pm</p>",
				"<h1>&ldquo;I have to say that Healing Waters has set the bar so high that other spas pale by comparison.&rdquo;</h1><p>-Sierra Patricia Scott <br />Host, &ldquo;It's All Good!&rdquo; <br />KPTS Ch. 8 Fridays, 8pm</p>",
				"<h1>&ldquo;I feel like more than a client when I come in for a service. I feel like a friend.&rdquo;</h1><p>-Sierra Patricia Scott <br />Host, &ldquo;It's All Good!&rdquo; <br />KPTS Ch. 8 Fridays, 8pm</p>",
				"<h1>&ldquo;I have been coming to Healing Waters for many years because of the wonderful atmosphere and staff.&rdquo;</h1><p>-Ann Turgeon, VIP</p>",
				"<h1>&ldquo;I especially enjoy the perks of being a VIP&ldquo;</h1><p>-Ann Turgeon, VIP</p>",
				"<h1>&ldquo;I love Healing Waters. They consistently have the best products, services and staff.&rdquo;</h1><p>-Tamara Lackey, VIP</p>",
				"<h1>&ldquo;I have traveled extensively, visiting spas in all parts of the country, but Healing Waters continues to be my favorite.&rdquo;</h1><p>-Tamara Lackey, VIP</p>",
				"<h1>&ldquo;I really appreciate the emphasis that Healing Waters places on professionalism and respect for both their clients and staff.&rdquo;</h1><p>-Joyce Wong, Spa Esthetician</p>",
				"<h1>&ldquo;I love the fact that my efforts are supported to give each client the best individual attention necessary.&rdquo;</h1><p>-Joyce Wong, Spa Esthetician</p>",
				"<h1>&ldquo;I love the service I receive at Healing Waters. I know that when I walk in the doors, I will be recognized, remembered, and my service will be performed with excellence.&rdquo;</h1><p>-Sabrina Duncan, VIP</p>",
				"<h1>&ldquo;No one compares to Healing Waters. I receive consistent results and I am always confident that I am receiving the best quality the market has to offer. I love Healing Waters!&rdquo;</h1><p>-Liane Hesse, VIP</p>",
				"<h1>&ldquo;We place a high emphasis on using the best technology and medical practices so I always feel confident that I‚Äôm really helping my clients become the best version of themselves.&rdquo;</h1><p>-Michelle Ball, RN</p>"
				);

function printQuote(){
	quoteNum = Math.round(Math.random()*(quotes.length-1));
	document.write(quotes[quoteNum]);
}


// Hide and Show Popup DIVs
function HideContent(d) {
if(d.length < 1) { return; }
document.getElementById(d).style.display = "none";
}
function ShowContent(d) {
if(d.length < 1) { return; }
document.getElementById(d).style.display = "block";
}
function ReverseContentDisplay(d) {
if(d.length < 1) { return; }
if(document.getElementById(d).style.display == "none") { document.getElementById(d).style.display = "block"; }
else { document.getElementById(d).style.display = "none"; }
}

