// File: readXML.js

// Start function when DOM has completely loaded 
$(document).ready(function(){ 
    myHTMLOutput = '';
	// Open the students.xml file
	$.get("experience.xml",{},function(xml){
		// Build an HTML string
		$('exp_DescripE',xml).each(function(i) {
			descrip = $(this).find("name").text();			
			// Build row HTML data and store in string
			myHTMLOutput = myHTMLOutput + descrip;
		});	
		myHTMLOutput += '';
		// Update the DIV called Content Area with the HTML string
		$("#ContentAbout").append(myHTMLOutput);
	});
}); 
