function init () {

   $('a[rel="lightbox[gruppe]"]').lightBox();
   
   // Calendar
   months = new Array("Januar","Februar","März","April","Mai","Juni","Juli","August","September","Oktober","November","Dezember");  
   
   if($('.calendar-table').length > 0) {
	  var monthyear = $.trim($('.columYear').text()).split(" ");
	  var month = $.inArray(monthyear[0], months)+1;
  	  var year = monthyear[1];
	  $('.linked_day, .linked_today').each(function(){
	    $(this).click(function(){
			window.location.href = "index.php?id=85&no_cache=1&tx_ttnews[year]="+year+"&tx_ttnews[month]="+month+"&tx_ttnews[day]="+$(this).text();		   
		});											
	  });
   }
}

$(init);