﻿$(function () {
var p = $("#calendar");
$.post("/archiv.html", { pages: "index" }, function (result) {
				p.fadeOut(500, function () { 
				p.fadeIn(500).html(result.calendar);
				});
            });
});
function nexted(month,year) {
var p = $("#calendar");
$.post("/archiv.html", { m: month, y: year, pages: "index" }, function (result) {
				p.fadeOut(500, function () { 
				p.fadeIn(500).html(result.calendar);
				});
            });
}
function preved(month,year) {
var p = $("#calendar");
$.post("/archiv.html", { m: month, y: year, pages: "index" }, function (result) {
				p.fadeOut(500, function () { 
				p.fadeIn(500).html(result.calendar);
				});
            });
}
