/* 			js
			uk.co.focus23
            Focus23
			Wed, 19 May 2010

   			dsynr.com
   			a@dsynr.com
   			abhishek jain
   			2010 Genedrome.Tachyon
*/

	xhttp=new XMLHttpRequest();
	xhttp.open("GET","lib/xml/nextEvent.xml",false);
	xhttp.send("");
	xmlDoc=xhttp.responseXML;
	var nam=xmlDoc.getElementsByTagName("host");
	var dat=xmlDoc.getElementsByTagName("date");
	var tim=xmlDoc.getElementsByTagName("time");
	var pri=xmlDoc.getElementsByTagName("price");
	
	document.write("Hosted by ");
	document.write(nam[0].childNodes[0].nodeValue +"<br />")
	document.write(dat[0].childNodes[0].nodeValue +"<br />")
	document.write(tim[0].childNodes[0].nodeValue +"<br />")
	document.write(pri[0].childNodes[0].nodeValue)
