$(document).ready(function()
{
  $.ajax({
    type: "GET",
    url: "homepage.xml",
    dataType: "xml",
    success: manipulateXml
  });
});

function  manipulateXml(data)
{
  //find every Tutorial and print the author
  $(data).find("task").each(function()
  {
	
	var body = $(this).find("body").text();
	var body1 = $(this).find("body1").text();
	var body2 = $(this).find("body2").text();
	
	var output = "<tr>";
	output += "<td class='body'><p>" + body + "</p></td>";
	output += "</tr>";
	output += "<tr><td class='body'><p>" + body1 + "</p></td>";
	output += "</tr>";
	output += "<tr><td class='body'><p>" + body2 + "</p></td>";
	output += "</tr>";
	
	
    $("#place-holder").append(output);
  });
}
