﻿function showPropertyDescription(propertyID) {
}

$(function () {
    $(".descriptionLink").toggle(function () {
        var propertyID = $(this).attr("propertyID");
        $("#description" + propertyID).show();
    }, function () {
        var propertyID = $(this).attr("propertyID");
        $("#description" + propertyID).hide();
    });
});
