$(document).ready(function() {
	$.get('orders.php', {}, function (xml) {
		$('#orders').html($(xml).find('order').text());
	});
});
