(function($){

    // The ready handler.
    $(function(){

        // Link movies with colorbox.
        $('a.movie').colorbox({ iframe: true, innerWidth: 530, innerHeight: 420 });

        // Link image grid galleries.
        $('div.image-grid a').colorbox();

        // Link div around a button.
        $('div.button:has(a)').click(function()
        {            
            var href = $(this).find("a").attr("href");            
            location.href = href;
        });

    });

})(jQuery);





