function previous_month(e) {
        e.preventDefault();
        $('#calendar_holder').load($('#previous_month').attr('href') + " #calendar_table", rebind_month_controls);
}

function next_month(e) {
        e.preventDefault();
        $('#calendar_holder').load($('#next_month').attr('href') + " #calendar_table", rebind_month_controls);        
}

function rebind_month_controls(){
    $('#previous_month').unbind('click').bind('click', previous_month);
    $('#next_month').unbind('click').bind('click', next_month);
}

$(function() {
    $('#next_month').click(function(e){
            next_month(e);
    });
    
    $('#previous_month').click(function(e){
            previous_month(e);
    });
    
});


