jQuery(document).ready(function(){
	jQuery('.prevnextlink').livequery('click', function(event){ 
         jQuery.ajax({
		   type: "POST",
		   url: "cal_ajax.php",
		   data: "month="+jQuery(this).attr('id'),
		   success: function(html){
		   	 jQuery('#calendardiv').html(html);
		   }
		 });
        return false; 
    }); 
	/*
	jQuery('.calendardaylink').livequery('click', function(event){ 
        alert(jQuery(this).attr('id'));
        return false; 
    });
	*/
});
