$(document).ready(function() {
    
    // ALL PAGES
    $('#sponsors .hoofdsponsor:first').css('margin-left', '10px;');
    
    // INDEX
    // Kalender
    $("#kalender-grid ul").hide();
    $("#kalender-grid .has-events").hover(function() {
        $(this).css('z-index', 9999).find('ul').show();
    }, function(){
        $(this).css('z-index', 'auto').find('ul').hide();
    });
    // Start Countdown
    $('#big-event-countdown').nederenameCountDown($('#timestamp').text());
    $('#read-on-onsdorp').click(function(){$(this).nederenameLightbox();});
    $('#nieuws li a').click(function(){$(this).nederenameLightbox(true)});
    $('#big-event-title').click(function(){$(this).nederenameLightbox(false, true)});
    // Start Slideshow
    $('#fotos-slideshow').cycle({
        timeout: 3000
    });
    
    // VERENIGINGEN
    //$('.vereniging').nederenamEqualHeight();
    
    // PHOTOS
    $('.fotoalbum').click(function(){
        var aid = $(this).attr('id');
        $.ajaxSetup({cache: false});
        $('#thumbs').load('Includes/category.php', {cat: aid}, function(){
            $('.foto-album-thumb').lightBox();
        });
    });
});
