jQuery.noConflict();

function getCal(action) {

  jQuery.ajax({
		url: action.replace(/\.html/, "/ajax.html"),  // get the url
		type: "POST",   // transfer data per post
		//data: serializedForm, // send vars
		//dataType: "json",   // response data per json
		success: function(response) {
		  jQuery('.tx-ttnews').html(response);
		},
		complete: function() {
		  // jQuery("."+divcontainer).animate({opacity:1});
		}
	});
}
// ajax reload

jQuery(function() {
	
	getCal('aktuelles/calendar/article/0.html');

	jQuery('.columPrevious a').live('click',function(){
		var action = jQuery(this).attr('href');

		getCal(action);
		  
		return false;
	});
	jQuery('.columNext a').live('click',function(){
		var action = jQuery(this).attr('href');

		getCal(action);
		  
		return false;
	});
});
