﻿// JScript File
$(
    function(){    
        var contentHeight = null;
        $(".image-box").each(
            function()
            {
                var imageHeight = $(this).children(".image-box-content").height();
                var imageWidth = $(this).children(".image-box-content").width();
                $(this).height(imageHeight + 22);
                $(this).width(imageWidth + 22);
                
                $(this).children(".image-box-left").height(imageHeight + 10);
                $(this).children(".image-box-right").height(imageHeight + 10);
                $(this).children(".image-box-top").width(imageWidth + 10);
                $(this).children(".image-box-bottom").width(imageWidth + 10);
            }
        );    
        $(".banner-mask").css({opacity: 0.5});
        contentHeight = $(".main-content").height();
        $(".gradient-left").height($(".main-content").height());
        $(".gradient-right").height($(".main-content").height());
        $("img").load(
            function()
            {
                if(contentHeight != null && contentHeight < $(".main-content").height())
                {
                    $(".gradient-left").height($(".main-content").height());
                    $(".gradient-right").height($(".main-content").height());
                }
            }
        );
        if ($.browser.mozilla)
            $(".signaiture").css('top', '338px');
    }
);

function showGalleryPopup(url)
{
    window.open(url, 'GalleryImage', 'status=0, toolbar=0, location=0, menubar=0, directories=0, resizable=0, scrollbars=0, height=640, width=640');
}
