// testimonials Load Script
function loadExternalHTMLPage() { 
var xmlhttp; 
var pagesToDisplay = ['/testimonials/testimonial1.html', '/testimonials/testimonial2.html', '/testimonials/testimonial3.html', '/testimonials/testimonial4.html', '/testimonials/testimonial5.html', '/testimonials/testimonial6.html', '/testimonials/testimonial7.html', '/testimonials/testimonial8.html', '/testimonials/testimonial9.html', '/testimonials/testimonial10.html', '/testimonials/testimonial11.html', '/testimonials/testimonial12.html']; 
if (window.XMLHttpRequest) { 
xmlhttp = new XMLHttpRequest(); 
} else { 
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP"); 
} 
xmlhttp.onreadystatechange = function () { 
if (xmlhttp.readyState == 4 && xmlhttp.status == 200) { 
document.getElementById("Testimonials").innerHTML = xmlhttp.responseText; 
} 
} 
var randomnumber = Math.floor(Math.random() * pagesToDisplay.length); 
xmlhttp.open("GET", pagesToDisplay[randomnumber], true); 
xmlhttp.send(); 
} 

