﻿jQuery(document).ready(function() {
    $(".gallery a.zoom, .gallery a.galleryimage").fancybox({
        'transitionIn': 'elastic',
        'transitionOut': 'elastic',
        'speedIn': 600,
        'speedOut': 200,
        'overlayShow': true
    });
    $('.gallerysearchlinkcontainer a').click(function() {
        $('.gallerysearch').slideToggle('fast', function() {
            // Animation complete.
        });
        $('.galleryamount').slideToggle('fast', function() {
            // Animation complete.
        });
        $('.gallerypagination').slideToggle('fast', function() {
            // Animation complete.
        });
    });

    popGalleryWidth();
});
$(window).resize(function() {
    popGalleryWidth();
});
function popGalleryWidth() {
    if ($(".gallerypopright").length > 0) {
        $(".gallerypopright").css('width', $(".gallerypop").width() - 240);
        $(".gallerypopheader").css('width', $(".gallerypop").width() - 24);
    }
}
