$.ajaxSetup ({
    // Disable caching of AJAX responses
    cache: false
});

function calendar_month(offset)
{
	$('#calendar').load('inc/inc-calendar.php', {
		offset: offset
	}, 
	function ()
	{
		
	});
}
