// JavaScript Document for News & events pages.

$(document).ready(function(){
		
	// Subsequent code generates a lightbox to display a 'coming soon' page.
	$('.comingSoon').click(function() {
																														
		$('#quickLinks').css({visibility: 'hidden'});
		var url = this.href;
	
		$('#lightBox').load(url + ' .overlay', function() {
																										
			$('.overlay p').after('<a id="closeBtn">Schliessen</a>');
			$("#closeBtn").css({cursor:'pointer'}).click(closeLightBox);																									
																									
		});
		$('#lightBoxBg').height($('#containerMain').height());
		$(document).scrollTop(0);
		$('#lightBoxBg').css('opacity', '0.85').fadeIn('slow');
		$('#lightBoxContainer').fadeIn('slow');
		
		return false;
	
	});
	
});