$(document).ready(function(){
	var theitem ="";
	var og = $(".xmail").text();
	var i = 0;
	$.ajax({
		type: "GET",
		url: "/xdata.xml",
		dataType: "xml",
		success: function(xml) {
			theitem = $(xml).find('xdata').find('xemail').text().replace("[a.t.]", "@").replace("[d.o.t.]", ".");
			$(".xmail").text(og + " " + theitem).show();	
		}
	});
	
});
