(function($) {

    window.site = {

        init: function() {
            // add any init calls here to run on page load...
        }

        // add site specific functions here

    };

    $(document).ready(function() {

        window.site.init();
        
        $("a.artwork").fancybox(
            {
                'onComplete': function() {
                    if ($(window).height() < 730) {
                        $('#fancybox-wrap')
                            .animate({'top': (parseInt($('#fancybox-wrap').css('top')) - 20) + 'px'}, 50);
                    }

                }
            }
        );

        /* Move the fancybox closer to the top of the page if it is a large image */
        var fancybox_original_height;
        $('a.artwork').click(function() {
            fancybox_original_height = parseInt($('#fancybox-wrap').css('height'));
            if (fancybox_original_height > 500) {
                $('#fancybox-wrap').css('top', '-50px');
            }
        })

    });


})(jQuery);
