function displaymonth(month,year){

    $('.widget_calendar').fadeOut('slow', function() {
        $.ajax({
            type: "POST",
            url: "/",
            data: "month=" + month + "&year=" + year +"&displaynext=true",
            success: function(msg){
                $('.widget_calendar').html(msg);
                $('.widget_calendar').fadeIn('slow');
            },
            error: function() {
                $('.widget_calendar').html('Sorry, your request could not be sent at this time');
            }
        });
    });

}
