$().ready( function() {
	
	calendar();

});


/* Calendar */

function calendar() {
	
	var nav = '.calendar .meses a.arrow';
	var show = '.calendar';
	var file = 'modules/calendar/calendar.php';
	
	$(nav).bind('click', function() {

		link = $(this).attr('href').split("#");

		jQuery.ajax({
			type: 'GET',
			url: file,
			data: link[0],
			success: function(msg) { 
				calendarSuccess(show,msg);
			}
		});

		return false;

	});

}

function calendarSuccess(show,msg) {

	$(show).animate({ opacity: 0 }, 500, "linear", function(){ 
		
		$(show).html(msg).animate({ opacity: 1 }, 500 );

		calendar(); // reativa os links ajax
		
	});

}
