﻿$(function() {
    $(".aHouse2Gallery").click(function() {
        var src = $(this).attr("rel");
        $.ajax({
            url: $(this).attr("href"),
            cache: false,
            success: function(html) {
                $("#pnlGalleryWrapper").html(html);
                HideNavigationShowGalleryWrapper();
                ChangePageBackground(src);
                //                StartFisheye();
            }
        });
        return false;
    });
});


function ShowInfoBox(obj) {
    $.ajax({
        url: $(obj).attr("href"),
        cache: false,
        success: function(html) {
            $('#pnlBgImage').css('background-image', 'none');
            $('#imgInfoBoxIcon').attr('src', '/Content/IMG/Icons/ZettelActiv.png');
            $('#pnlInfo').css('display', 'block').html(html);
        }
    });

    $(".imgGallery").each(function() {
        $(this).css("border-color", "rgb(132, 137, 133)");
    });
    return false;
}

