// links


$(document).ready( function() {
	
	// Open the xml file
	
	$.get("xml/recent.xml",{},function(xml){
      		
      		var output = "";
      		
      		// get the html content
	  	
	  	output += "<div class='recentImg'><a class='more' href='projects.php'><img src='project_images/" + $(xml).find("image").text() + "' border=0></a></div>";
		output += "<div class='recentDesc'>"+ $(xml).find("text").text(); + "</div>";
		
		
		// Update the DIV
		$("#recentBox").append(output);
		
		
	}); // end read xml

}) // end ready function
