

/* Copyright © Website Engineers Limited */

// Page Load
$(document).ready(
    function () {
        // Property Details
        $("div.Property").each(
            function () {
                $(this).click(
                    function () {
                        $("div#" + this.id.replace("Property", "PropertyDetails")).fadeIn("fast");
                    }
                );
            }
        );
        $("div.PropertyDetails div.Close").each(
            function () {
                $(this).click(
                    function () {
                        $("div#" + this.id.replace("PropertyClose", "PropertyDetails")).hide();
                    }
                );
            }
        );
        // Bot
        $("span#EmailBot").html('<a href="mailto:info@letsmovegroup.co.uk">info@letsmovegroup.co.uk</a>');
    }
);

/* End */

