var dbCalendarPath='http://www.assono.de/blog';
var calendarid='';
function showCalendar(a) {
	var b=$(a).find('Calendarid').text();
	var c=$(a).find('CalendarContents').text();
	$(".CalendarContents").each(function(){
		if(this.id=b){
			$(this).html(c)
		}
	})
}
function setCalendar(a) {
	$(".CalendarContents").each(function(){$(this).attr("id",a)});
	getCalendar()
}
function getCalendar(){
	$(".CalendarContents").each(function(){
		$(this).html('<img src="http://www.assono.de/blog/indicator.gif">');
		var a='http://www.assono.de/blog/agnt_AJAX_Calendar?OpenAgent&rdm='+Math.random()+'&caldate='+this.id;
		var b=$.ajax({url:a,type:'get',dataType:'xml',success:showCalendar});
	})
}

