﻿/// <reference path="~/desktopmodules/intevista/js/jquery-1.3.2.min.vsdoc.js"/>

$(window).load(function () {
    $("img.iv_public_listings_details_image").each(function () {
        var i = $(this);
        var p = i.parent();
        if (i.width() > p.width())
            i.width("100%");
    });
});

$(document).ready(function () {
    $(".iv_actiondetails_enabled").click(function () { window.open($(this).attr("href")); });
});
