// JavaScript Document

$(document).ready(function() {

    /*****************************************************************/
    // MAIN NAVIGATION
    $('#main_nav li').each(function() {

        var trigger = $('.trigger', this);
        var menu = $('ul', this);
        var timer;

        $(menu).mouseover(function() {
            clearTimeout(timer);
        }).mouseout(function() {
            timer = setTimeout(hideNav, 250)
        });

        $(trigger).mouseover(function() {
            clearTimeout(timer);
            $(menu).slideDown();
        }).mouseout(function() {
            timer = setTimeout(hideNav, 250)
        });

        function hideNav() {
            $(menu).slideUp();
        }
    });
    /*****************************************************************/


    /*****************************************************************/
    // EVENTS' HIDE/CLOSE DIVS
    $('.events li').each(function() {

        var trigger = $('.learn_more', this);
        var div = $('.hidden', this);

        $(trigger).click(function() {
            $(div).slideToggle('fast');
            return false;
        });

    });
    /*****************************************************************/



    /*****************************************************************/
    // FANCY BOX
    $('.modal').fancybox({
        'width': 880,
        'height': 600,
        'autoScale': false,
        'transitionIn': 'none',
        'transitionOut': 'none',
        'type': 'iframe'
    });

    $('.modal_sm').fancybox({
        'width': 400,
        'height': 250,
        'autoScale': false,
        'transitionIn': 'none',
        'transitionOut': 'none',
        'type': 'iframe'
    });
    /*****************************************************************/
});
