if (window.XMLHttpRequest)
  {// code for IE7+, Firefox, Chrome, Opera, Safari
  xmlhttp=new XMLHttpRequest();
  }
else
  {// code for IE6, IE5
  xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
  }
xmlhttp.open("GET","banners.xml",false);
xmlhttp.send();
xmlDoc=xmlhttp.responseXML; 

document.write("<ul>");
var x=xmlDoc.getElementsByTagName("banner");
for (i=0;i<x.length;i++)
  { 
  document.write("<li><img src=");
  document.write(x[i].getElementsByTagName("image")[0].childNodes[0].nodeValue);
  document.write("></li>");
  }
document.write("</ul>");
