function trimDatesInBox() {
	$('.bandbox ul').each(function() {
		var anzahl = $('li',this).length;
		if (anzahl > 5) {
			$('li:gt(5)',this).remove();
			$(this).append('<li>...</li>');
		}
	});
}

function initTooltip() {
	$('a').has('img').hover(function(e) {
		var title = $(this).attr('title');
		$(this).attr('temptitle',title);
		$(this).attr('title','');
		$('body').append('<div id="toolTip">'+title+'</div>');
		$('#toolTip').css('top',e.pageY);
		$('#toolTip').css('left',e.pageX + 10);
	}, function () { $('#toolTip').remove(); $(this).attr('title',$(this).attr('temptitle')); });
	$('a').has('img').mousemove(function(e) {
		$('#toolTip').css('top',e.pageY);
		$('#toolTip').css('left',e.pageX + 10);
	});
}

$(document).ready(function() {
	
	trimDatesInBox();
	initTooltip();
	
});
