
	function getcal()
	{
		//$("#caldates").slideUp("fast",function() {
		$.ajax({
			type: "POST",
			url: "getcal.php",
			data: "m="+currentmonth+"&y="+currentyear,
			success: function(resp){
				$("#caldates").html(resp);//.slideDown("normal",null);
				
			}
			});	
		//});
	}
	
	function nextmonth()
	{
		currentmonth++;
		if (currentmonth >= 13)
		{
			currentyear++;
			currentmonth = 1;
		}
		$("#calmonth").attr({"src":"images/month_"+currentmonth+".jpg"});
		getcal();
	}
	
	function prevmonth()
	{
		currentmonth--;
		if (currentmonth <= 0)
		{
			currentyear--;
			currentmonth = 12;
		}
		$("#calmonth").attr({"src":"images/month_"+currentmonth+".jpg"});
		getcal();
	}