﻿$(document).ready(function () {

    
    hideOverview();

    $(".PictureOverviewCloseButton").click(function () {
        hideOverview();
    });
    $("#PictureOverviewBackground").click(function () {
        hideGallery();
    });



    hideGallery();

    $(".PictureGalleryCloseButton").click(function () {
        hideGallery();
    });

    $("#PictureGalleryBackground").click(function () {
        hideGallery();
    });

    $(".ObjectDetailImage").click(function () {
        showGallery();
    });

});

// Bildlista *****************************
function showGallery() {
    $("#PictureGalleryBackground").show();
    $("#PictureGallery").show();
};

function hideGallery() {
    $("#PictureGalleryBackground").hide();
    $("#PictureGallery").hide();
};



// Planlösning ***************************
function showOverview() {

    $("#PictureOverviewBackground").show();
    $("#PictureOverview").show();

}
function hideOverview() {
    $("#PictureOverviewBackground").hide();
    $("#PictureOverview").hide();
}