var xmlDoc;
if (window.XMLHttpRequest)
  {
  xhttp=new XMLHttpRequest();
  }
else // Internet Explorer 5/6
  {
  xhttp=new ActiveXObject("Microsoft.XMLHTTP");
  }
xhttp.open("GET","../testimonials.xml",false);
xhttp.send("");
xmlDoc=xhttp.responseXML;


function marquee_quote()
{
	var x=xmlDoc.getElementsByTagName("TESTIMONIAL");
	c=x.length-1;
	i=Math.floor(Math.random()*c);
	customer=(x[i].getElementsByTagName("CUSTOMER")[0].childNodes[0].nodeValue);
	answer=(x[i].getElementsByTagName("ANSWER")[0].childNodes[0].nodeValue);
	txt=customer + " - " + answer;
	document.getElementById("news_marquee").innerHTML=txt;
}
