$(function() {
	
	
	// DIARIO FOTOGRAFICO
	$('#diarioBox .miniatureAnno a').live('click', function()
  {
		var url = $(this).attr('href');
		$.ajax({
			type: 'get',
			url: url,
			beforeSend: function()
			{
				$('#fotoBoxContent').html('<div style="text-align:center; height:33px; padding-top:30px;"><img src="/images/loader.gif" /></div>');
			},
			success: function(data)
			{
				$('#fotoBoxContent').html(data);
			},
			error: function(XMLHttpRequest, textStatus, errorThrown)
			{
				alert(textStatus + ' ' + errorThrown);
			}
		});	
		return false;
	});
	
							
});