var testimonialsArr = new Array();

testimonialsArr[0] = new Array(6);
testimonialsArr[0][0] = "&#8220;LayerOne worked with Intranet to optimize and promote our website. We provided roughly 30 key words/phrases and, in just over a week, Hasit and his team had LayerOne ranked between 1 and 7 for each keyword on Google and other search engines.  We were delighted with the quality and timeliness of the work.&#8221;<br/><br/><b>Brandon Freeman </b><br/>President & CEO<br/>July, 2004 ";
testimonialsArr[0][1] = "LayerOne";
testimonialsArr[0][2] = "www.LayerOne.com";

//testimonialsArr[1] = new Array(6);
//testimonialsArr[1][0] = "&#8220;Terminal&#160;B is an effective compliment to our staff. They've taken the time to understand our business and our needs, and maintain our systems accordingly.&#8221;<br/><br/><b>Edgar Figueroa</b><br/>Senior Technical Operations Manager";
//testimonialsArr[1][1] = "LayerOne";
//testimonialsArr[1][2] = "www.wi-fi.org";


var rnd = Math.floor(Math.random()*testimonialsArr.length);
function gentestimonials() {
	if (document.getElementById("testimonials")) {
		document.getElementById("testimonials").innerHTML = "<p>"+testimonialsArr[rnd][0]+"<br/>"+testimonialsArr[rnd][1]+"<br/><br/><a href=http://"+testimonialsArr[rnd][2]+"><span class='orange'>More</a> &gt;</span></p>";
		rnd++; if (rnd == testimonialsArr.length) rnd = 0;
		setTimeout('gentestimonials()',8000);
	}
}

window.onload = gentestimonials;
