// Arch Dance : JavaScript : Index
$(document).ready(function() {
    $('#supersize').cycle({
        fx: 'fade',
        timeout: 4000,
        speed: 1000,
        delay: 1000
    });
    $("a#intro_video").fancybox({
        padding: 0,
        overlayOpacity: 0.7,
        overlayColor: '#000',
        titleShow: false,
        autoScale: true,
        transitionIn: 'none',
        transitionOut: 'none',
        speedIn: 0,
        speedOut: 0,
	    onComplete: function() {
	        $('#supersize').cycle({
	            timeout: 0
	        });
	    },
	    onClosed: function() {
	        $('#supersize').cycle({
	            timeout: 5000
	        });
	    }
    });
});


