$(document).ready(function() {

    // Animated On-Page Scrolling
    /*$('a[href^="#"]').not(".slide-toggle-next, .show-toggle-next").click(function() {
        $.scrollTo(this.hash, "slow");
        return false;
    });*/

    // Fancybox
    $("a[rel^=lightbox]").fancybox({
        titlePosition:      'over',
        speedIn:            300,
        speedOut:           1,
        transitionOut:      'none',
        overlayShow:        true,
        hideOnContentClick:	true,
        centerOnScroll:     true,
        onComplete:         function() {
            $("#fancybox-wrap").hover(function() {
                $("#fancybox-title").show();
            }, function() {
                $("#fancybox-title").hide();
            });
        }
    });

    // Force opening external links in new window
    $("a.external").click(function(){
        window.open(this.href);
        return false;
    });
    
    // Carousel
    $('.carousel').cycle({
		fx			:	'fade',
        speed		:	500,
		timeout		:	4000,
		pause		:	true
	})



});

