function LoadForm() {
	$('#div_form').html("<br><br><p align='center'><img src='./img/loading.gif' alt='Loading' border='0'></p>");
	$.ajax({
		url: 'contacts.php',
		dataType: 'html',
		beforeSend: function(a) {},
		success: function(b) {
			$("#div_form").html(b);
			$(".date-pick").datePicker({startDate:"01/01/1920", autoFocusNextInput: true}); 
		},
		error: function(a,b,c){alert('Non trovo contacts.php')}
	});
} 

$(function() {
	LoadForm();
	$('a.lightbox').lightBox();
});

