$(document).ready(function() {
	$('.arrow a').click(function() {
		var link = $(this).attr('href');
		$.post( link, function(data) {
			var results = jQuery.parseJSON( data );
			if( results.status == true ) {
				$('.calendar_holder').hide().html( results.calendar ).fadeIn();
				$('.month_span').hide().html( results.month ).fadeIn();
				$('#previous a').attr( 'href', '' ).attr( 'href', BTBF.url + '/ajax/calendar?move=' + results.previous );
				$('#next a').attr( 'href', '' ).attr( 'href', BTBF.url + '/ajax/calendar?move=' + results.next );
			}
		});
		return false;
	});
});
