﻿$(function () {

    $('#BannerCycle').cycle({
        delay: -2000,
        timeout: 10000
    });

    // MENU
    $('a.active').parents('ul').show();

    $('li[rel="parent"]').each(function () {
        var a = $(this).find('a:first');
        a.click(function () {
            a.next('ul').slideToggle('slow');
            return false;
        });
    });

    // EVENTS
    $('#EventsCycle').cycle();

    var $album_load = false;

    $('.event a').click(function () {
        if ($album_load) return false;

        $album_load = true;

        $('*').addClass('cursor_wait');
        var id = $(this).attr('rel');
        $.get(
            'AlbumPhotos.ashx',
            { 'id': id },
            function (data) {
                $('*').removeClass('cursor_wait');
                $.fancybox(data, { 'type': 'image' });
                $album_load = false;
            },
            'json'
        );
        return false;
    });
});
