// portfolio


$(document).ready( function() {
/*
	// Open the students.xml file
	$.get("xml/portfolio.xml",{},function(xml){
      		
      		output = "<ul>";
      		
	  	
		// Run the function for each tag in the XML file
		$('project',xml).each(function(i) {
			
			output += "<li>";
			output += $(this).attr("title") + ": "+$(this).find("image").text();
			output += "</li>";
			
		});
		
		
		output += "</ul>";
		
		// Update the DIV
		$("#content").append(output);
		
		
	}); // end read xml
*/
}) // end ready function
