$(document).ready(function() {
	$('textarea').autoResize({
		animateDuration : 200,
		extraSpace: 0
    });

    $('#headerSlider').cycle({
        fx: 'fade',
        speed: 2000,
        timeout: 7500
    });

    $("a[rel=group]").fancybox({
		'transitionIn'		:	'elastic',
		'transitionOut'		:	'elastic',
		'speedIn'			:	600, 
		'speedOut'			:	200, 
		'overlayShow'		:	true,
		'overlayColor': '#d4cbc5',
		'overlayOpacity'    :   0.7,
        'type'              :   'image'
	});

    jQuery("#submitFormButton").click(function () {
        if (Validate(this.name)) {
            jQuery("#" + this.name).submit();
        }
    });
    $('a.closeMessage').click(function () {
        $('.MeldingBox').slideUp(500);
        $('body').find('#OverlayMeldingen').fadeOut(500);
    });
});

