﻿$(document).ready(function () {

    $(".ticket").click(function () {
        window.open($(this).attr("href"), "ticket", "width=800,height=600,scrollbars=yes");
        return false;
    });

    if ($(".imgzoom")) $(".imgzoom").fancybox();

    $(".scroller").scrollable({ circular: true, mousewheel: true }).autoscroll({ interval: 3000 });

    var index = 1;
    var aantal = 3;

    setInterval(function () {

        $('.master.home .header').fadeOut('fast', function () {
            $(this).css('background-image', 'url(portals/_default/skins/huis-van-oranje/images/headers/0' + index + '.jpg)');
            $('.master.home .header').fadeIn('fast');
        });

        index = index + 1;
        if (index > aantal)
            index = 1;

    }, 7000);

});
