function mouse_over(element) {
	if (element.className == "main-menu-tab") {
		element.className = "main-menu-tab main-menu-tab-highlight";
	}
}

function mouse_out(element) {
	if (element.className == "main-menu-tab main-menu-tab-highlight") {
		element.className = "main-menu-tab";
	}
}

function tab_click(tab_name) {

	switch (tab_name) {
		case "Home":
			next_page = "index.htm";
			break;
		case "Services":
			next_page = "services.htm";
			break;
		case "Key Personnel":
			next_page = "key_personnel.htm";
			break;
		case "FAQ":
			next_page = "faq.htm";
			break;
		case "Resources":
			next_page = "resources.htm";
			break;
		case "Contact":
			next_page = "contact.php";
			break;
		case "Technology":
			next_page = "technology.htm";
			break;
	}

	location.href = next_page;

}

function show_testimonials() {

		var div = document.getElementById('testimonials');


		for(i=0; i < content.testimonials.length; i++) {

			div.innerHTML += '<p class="text-content">' + content.testimonials[i].long_testimonial;
			
			if (content.testimonials[i].name != ''){div.innerHTML += '<br>' + content.testimonials[i].name;}	
			
			if (content.testimonials[i].title != ''){div.innerHTML += '<br>' + content.testimonials[i].title;}			
			
			if (content.testimonials[i].company != ''){div.innerHTML += '<br><span class="red">' + content.testimonials[i].company + '</span>';}	
						
			div.innerHTML += '</p><br><br><div class="divider"></div>';

			div.scrollTop = div.scrollHeight;
		}

	}

function show_short_testimonial(){

		var div = document.getElementById('short-testimonial');
		randno = Math.floor ( Math.random() * content.testimonials.length );
		div.innerHTML += content.testimonials[randno].short_testimonial;


}

