// JavaScript Document

function navlinks_over(navbox) {
	document.getElementById(navbox).src = "site_images/navbox_" + navbox + "_mouseover.png";
}
function navlinks_out(navbox) {
	document.getElementById(navbox).src = "site_images/navbox_" + navbox + ".jpg";
}

var ecofacts = new Array(6);
ecofacts[0] = "Use natural light when possible; artificial lighting is estimated to account for up to 12&#37; of our energy consumption.";
ecofacts[1] = "When selecting furniture, make sure it is made from sustainably harvested or reclaimed woods. Even better, ask a local craftsman to build it or purchase vintage.";
ecofacts[2] = "Choose brighter colors in your home. The sun&rsquo;s rays are reflected by light colors, making a space brighter, which will have an effect on your energy consumption in terms artificial lighting.";
ecofacts[3] = "Reduce water use by installing a low&ndash;flow shower head, a low&ndash;flow aerator and a dual flush toilet. The typical household with three members uses over 300 gallons of water per day.";
ecofacts[4] = "Use rapidly renewable materials on floors and cabinets. A material is rapidly renewable when it can regenerate itself naturally within 10 years.";
ecofacts[5] = "Use low or no VOC paint and finishes. VOCs are chemicals, which when released, contribute to the formation of smog and poor indoor air quality.";

var ecofacts_images = new Array(6);
ecofacts_images[0] = "site_images/ecotip_image_1.jpg";
ecofacts_images[1] = "site_images/ecotip_image_2.jpg";
ecofacts_images[2] = "site_images/ecotip_image_3.jpg";
ecofacts_images[3] = "site_images/ecotip_image_4.jpg";
ecofacts_images[4] = "site_images/ecotip_image_5.jpg";
ecofacts_images[5] = "site_images/ecotip_image_6.jpg";

var random_variable = Math.floor(Math.random()*5);
function ecofact_onload() {
	document.getElementById("ecofact").innerHTML = ecofacts[random_variable];
	document.getElementById("ecotip").style.backgroundImage = "url(" + ecofacts_images[random_variable] + ")";
}
var next = (random_variable + 1);
function ecofact_next() {
	if (next > 5) {
		next = 0;}
	document.getElementById("ecofact").innerHTML = ecofacts[next];
	document.getElementById("ecotip").style.backgroundImage = "url(" + ecofacts_images[next] + ")";
	next += 1; 
}

var testimonials = new Array(6);
testimonials[0] = "&quot;I went to Ecologique knowing only that I wanted my living room furnished and I wanted to go as green as possible. Sarah delivered. She came into my home to analyze the situation, gave me a tour of what&rsquo;s available in several different local shops and now I have a living room in which I enjoy spending time, greenly.&quot;  &nbsp; &nbsp; &ndash; Trey Jones";
testimonials[1] = "&quot;Sarah has a superb eye for color; colors I would not have guessed would be so inviting in my home. And style. I give a very small set of desirable attributes and she comes back with a set of choices that are neither overwhelming nor sparse, and have all the qualities I want plus some I didn&rsquo;t know I wanted.&quot;  &nbsp; &nbsp; &ndash; Trey Jones";
testimonials[2] = "&quot;Sarah is a natural communicator. With her wealth of knowledge mixed with passion for getting the job done right, I found the process to be very quick and painless. She asks the right questions, I answer to the best of my ability and she delivers expeditiously.&quot;  &nbsp; &nbsp; &ndash; Trey Jones";
testimonials[3] = "&quot;I had a unparalleled experience working with Sarah in 2010! She has a knack for color palettes and textures that truly embraced my needs as well as the vision for my studio. You can see the look of awe every time a client walks in for the first time and that speak volumes to Ecologique and what it has to offer. Want fabulous taste with care for the environment? She&rsquo;s your girl.&quot;  &nbsp; &nbsp; &ndash; Jessica Nelson, Esty Skin Studio";
testimonials[4] = "&quot;Sarah&rsquo;s commitment to green design makes her a stand out Austin designer.&quot;  &nbsp; &nbsp; &ndash; Elisha Tomberlin";
testimonials[5] = "&quot;I highly recommend Sarah to anyone who is looking to bring beauty and sustainability into their lives.&quot;  &nbsp; &nbsp; &ndash; Elisha Tomberlin";

var random_variable2 = Math.floor(Math.random()*5);
function testimonials_random() {
	document.getElementById("testimonials").innerHTML = testimonials[random_variable2];
}
