$(document).ready(function(){
 
$.get("/xml/landing.xml", function(xml){
i=0;
while (i< 3){
$("#feedevents").append("<a href='" + $("slideshowTwo > slide",xml).eq(i).attr("url") + "'>" + $("slideshowTwo > slide > caption > head",xml).eq(i).text() + "</a><br><br>");   
i++;
}
 });

});

