$(function() {
	$('#pretty').tooltip({
	track: true,
	delay: 0,
	showURL: false,
	showBody: " - ",
	extraClass: "pretty",
	fixPNG: true,
	left: -120
	});
});

function minicalchange(mo)
{
	//alert("Darbojas tas joks!");
    $.ajax({
         type: "POST",
         url: "inckalendars1.asp",
		 data: "datums=" + mo,
         success: function(msg){
                    //alert( "Added to cart!");
					$("#incal").fadeOut('slow', function() {
					$("#incal").hide();
					$("#incal").html(msg);
					$("#incal").fadeIn('slow');
														  });
                  },
		 error:function (xhr, ajaxOptions, thrownError, msg){
                    alert("Kluda!");
					//$("#reminderslist").html(msg);
					//alert(xhr.status);
                    //alert(thrownError);
                }  
    });
   return false;
}
