$(document).ready(function() {
/*
	$(".tx-cal-controller_teaser dl dt").mouseover(function (e) {
	msg = $(this).next("dd").html();
	if(!msg) {
		msg = $(this).html();
	}
		$("body").append("<div id=bs_tooltip><div id=bs_tooltip_top></div><div id=bs_tooltip_bg><div id=bs_tooltip_text>"+ msg +"</div></div><div id=bs_tooltip_bottom></div></div>");
		$("#bs_tooltip").css({left:(e.pageX)+"px",top:(e.pageY-$("#bs_tooltip").height())+"px"});
	});
   	$(".tx-cal-controller_teaser dl dt").mouseout(function () {
		$("body #bs_tooltip").remove();
	});   
*/
});
