
$('#slider img').hide();

$(function() {
	// Seite empfehlen
	$("#footer a[rel]").overlay({
		mask: {
			color: '#ffffff',
			loadSpeed: 200,
			opacity: 0.7
		},
		effect: 'apple',
		onBeforeLoad: function() {
			$('#overlay_iframe').attr('src', this.getTrigger().attr("href"));
		}
	});
	
	// Gallery Lightbox
	$(".tx-wfgallery-pi1 a[rel]").lightBox();
});

// Slider
$(document).ready(function() {
	$('#slider').nivoSlider({
		 effect:'fade',
		 controlNav:false,
		 directionNav:false,
		 keyboardNav:false,
		 pauseTime:6000
	});
	
	$('table.kursplan tr').hover(function(){
		$(this).addClass('highlight');
	});
	
	$('table.kursplan tr').mouseleave(function(){
		$(this).removeClass('highlight');
	});
		
});



