jQuery(document).ready(function() {
	$('#slideshow').cycle({
		fx: 'fade',
		timeout: 6000,
		speed: 2500,
		pause: 1,
		next: '#btn-next',
		prev: '#btn-prev',
        pager: '#pager'
	});

	$("#btn-prev").hover(function() {
		$('#slideshow').cycle('pause');
	}, function() {
		$('#slideshow').cycle('resume');
	});
	$("#btn-next").hover(function() {
		$('#slideshow').cycle('pause');
	}, function() {
		$('#slideshow').cycle('resume');
	});

    $('#mittagskarte').fancybox({
        autoDimensions: true,
        width: 960,
        height: 600
    });

    $('#timetable').fancybox({
        autoDimensions: true,
        width: 960,
        height: 600
    });

    $('#gallery-link').fancybox({
        autoDimensions: false,
        width: 700,
        height: 560,
        scrolling: 'no'
    });
    
    $('#newsletter').fancybox({
        autoDimensions: true,
        width: 600,
        height: 500,
        scrolling: 'no',
        type: 'iframe'
    });
 
    $('#impressum').fancybox({
        autoDimensions: true,
        titleShow: false,
        width: 400,
        height: 520,
        scrolling: 'no',
        type: 'iframe'
    });
    

});
