$(document).ready(function() {
	$("a#donate").bind("click", function() {
		$("#donate_form").submit();
		return false;
	});

	$("a.single_1").fancybox();
		
	$("a.single_2").fancybox({
		'zoomOpacity'			: true,
		'overlayShow'			: false,
		'zoomSpeedIn'			: 500,
		'zoomSpeedOut'			: 500
	});
	
	$("a.single_3").fancybox({
		'zoomOpacity'			: true,
		'overlayShow'			: true,
		'zoomSpeedIn'			: 600,
		'zoomSpeedOut'			: 500,
		'easingIn'				: 'easeOutBack',
		'easingOut'				: 'easeInBack'
	});
	
	$("a.group").fancybox({
		'zoomOpacity'			: true,
		'overlayShow'			: true,
		'zoomSpeedIn'			: 600,
		'zoomSpeedOut'			: 500,
		'easingIn'				: 'easeOutBack',
		'easingOut'				: 'easeInBack',
		'hideOnContentClick'	: false
    });

    $("a.iframegooglemaps").fancybox({
        'hideOnContentClick': false,
        'type': 'iframe',
        'width': 570,
        'height': 625
    });

    $("a#lnkVerplaatsen").fancybox({
        'scrolling': 'no',
        'titleShow': false
    });

    $("a.iframeOpenen").fancybox({
        'hideOnContentClick': false,
        'scrolling': 'no',
        'type': 'iframe',
        'frameWidth': 800,
        'frameHeight': 600,
        'width': 800,
        'height': 600,
        'overlayShow': true
    });

    $("#youtube").click(function() {
        $.fancybox({
            'padding': 0,
            'autoScale': false,
            'transitionIn': 'none',
            'transitionOut': 'none',
            'title': this.title,
            'width': 680,
            'height': 495,
            'href': this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
            'type': 'swf',
            'swf': {
                'wmode': 'transparent',
                'allowfullscreen': 'true'
            }
        });

        return false;
    });
});
