$(window).load(function() {
	$('#attachments').nivoSlider({
		directionNav:	false,
		controlNav:		false,
		captionOpacity:	0
	});
});

$(document).ready(function() {

	$('#menu').prepend('<span class="ribbon"></span>');


	$('.tec-calendar-buttons form').attr('target', '_blank');
	
	//$("label").inFieldLabels();
	
	$('.gallery-item a').addClass('gallery-link').attr('rel', 'grp');
	$('a.gallery-link').fancybox();
	
	// if there's no events in a section, remove the headline.
	$('.ticket-event-group').each(function() {
		if ($(this).next('.tec-events').children().length == 0) {
			$(this).remove();
		}
	});
	
});

