function switchMonth(buttonId)
{
    jQuery.ajax(
    {
        type: 'POST',
        url: jQuery('#' + buttonId).attr('href'),
        success: function(response)
        {
            jQuery('#calendarContainer').replaceWith(response);
        }
    });
    return false;
}


