$(document).ready(function() {
	loadLastminutes();
});

function loadLastminutes() {
	$('#spacerLastMinute').hide();
	$('#titleLastMinute').hide();
	$('#textLastMinute').hide();
	
	try	{
		var intCount = 0;
		
		$.get('lastminute.xml',{},function(xml){
			var strReturn = '';
			
			$('lastminute',xml).each(function(i) {
				strReturn = strReturn + '* ' + $(this).find('day').text() + ': van ' + $(this).find('from').text() + ' tot ' + $(this).find('until').text() + '<br />';
				intCount = intCount + 1;
			});
	
			if(intCount > 0) {
				$('#phLastminute').append(strReturn);
				
				$('#spacerLastMinute').show();
				$('#titleLastMinute').show();
				$('#textLastMinute').show();
			}
		});
	}
	catch(err) {
		//alert(err);
	}
}