//MODAL
    function ClbMsgInfoCourriel() {
        $(document).ready(function () {
            $.fn.colorbox({ scrolling: false, inline: true, href: "#msg-infocourriel", open: true, onClosed: function () { window.location.href = window.location.href; } });
        });
    }
    function ClbMsgInfoCourrielConfirm() {
        $(document).ready(function () {
            $.fn.colorbox({ scrolling: false, inline: true, href: "#msg-infocourrielconfirm", open: true, onClosed: function () { window.location.href = window.location.href; } });
        });
    }
    function ClbMsgContact() {
        $(document).ready(function () {
            $.fn.colorbox({ scrolling: false, inline: true, href: "#msg-contact", open: true, onClosed: function () { window.location.href = window.location.href; } });
        });
    }
    function ClbMsgTripQuote() {
        $(document).ready(function () {
            $.fn.colorbox({ scrolling: false, inline: true, href: "#msg-tripquote", open: true, onClosed: function () { window.location.href = window.location.href; } });
        });
    }
    function ClbMsgTripQuoteInfoCourriel() {
        $(document).ready(function () {
            $.fn.colorbox({ scrolling: false, inline: true, href: "#msg-tripquoteinfocourriel", open: true, onClosed: function () { window.location.href = window.location.href; } });
        });
    }

//COLORBOX
    $(document).ready(function () {
        $("a[rel='brochure']").colorbox({ iframe: true, innerWidth: 1024, innerHeight: 768 });
        $("a[rel='gallery']").colorbox({ slideshow: true });
        $("a[rel='trail']").colorbox({ slideshow: true });
    });

//CONTENT SLIDER
    $(document).ready(function () {
        $("#featured").tabs({ fx: { opacity: "toggle"} }).tabs("rotate", 3000, true);        
    });

//SLIDING BOX
    $(document).ready(function () {
        $('.boxgrid.caption').hover(function () {
            $(".cover", this).stop().animate({ top: '53px' }, { queue: false, duration: 160 });
        }, function () {
            $(".cover", this).stop().animate({ top: '87px' }, { queue: false, duration: 160 });
        });
    });
