jQuery(document).ready( function() {

	jQuery('#fechadehoy').calendar( {

		parentElement: '.almanaque',

		dateFormat: '%Y-%m-%d',
		
		selectHandler: function () {
		
			jQuery('.calendario .loading').show();
			
			jQuery('.calendario .eventos').html('');
					
					
			jQuery.get(
				
				'loader.php?modulo=calendario&fecha=' + this.date.print(this.dateFormat),
					
				function ( data ) {
					
					jQuery('.calendario .loading').hide();
					
					jQuery('.calendario .eventos').html(data);
					
				} 
			
			);


		}

	} );
	
} );
