var newsHTML = '';
$.ajax({
	url: domain + 'langhamnews.xml',
	dataType: 'xml',
	type: 'GET',
	cache: false,
	timeout: 10000,
	async: true,
	success: function(xml){
		$(xml).find('news:eq(0)').each(function(){
			var theNews = $(this);
			$('#newsDIV').each(function(){
				$(this).find('.newsHeading').html(theNews.find('heading_index').text().toString());
				$(this).find('.newsInfo').html(theNews.find('contentshort').text())
			});
		});
	}
});
