function buildCal(responseHTML) {
	var target = $('.module.calendar');
	target.fadeOut(550, function(){
		target.empty();
		target.html(responseHTML);
		target.fadeIn(550);
	});
}

function swapMonth(target) {
	//$('#blogcalendar').fadeOut(550);
	$.ajax({
		url: target,
		success: function(data){buildCal(data);}
	});
}