var holdliste_i = 0;
var weekday = null;
$(window).ready(function() {
	$('div.div-348').find('div.div-351').each(function() {
		holdliste_i++;
		if (holdliste_i % 2 != 1) {
			$(this).css({'background':'#eaf6f9'})	;
		}
		if (weekday != $(this).find('div.div-365 p').html()) {
			weekday = $(this).find('div.div-365 p').html();
			$(this).prepend('<div style="float:left;clear:left;background:#ffffff;width:100%;"><p>&nbsp;</p></div>');
		}
	});
	$('.closepopup').css({'cursor':'pointer'}).click(function() {
		$('.'+$(this).attr('rel')).css({'opacity':'1'}).animate({'opacity':'0'}, 1000);
	});
});