﻿/// <reference path="../doco.js" />
/// <reference path="~/User_Control/PropertyDetails.ascx" />

$(function() {
    $("#middlecontent_left .offlineresultsmain a[rel^='lightbox']").lightbox({
        fitToScreen: true,
        fileLoadingImage: m_fileLoadingImage,
        fileBottomNavCloseImage: m_fileBottomNavCloseImage
    });
    $("#lnk-slide a").click(function() {

        $("#long_description").toggle();
        var linkText = $(this);
        if (linkText.html() == "Read less")
            linkText.html("Read more");
        else
            linkText.html("Read less");
    })
});



