replace_main_featured_property = function(data, textStatus) {
    if (textStatus == 'success') {
        $('#main-featured-property').replaceWith(data);
    }
};

$(document).ready(function() {
    $("a[@id^='featured-property-thumbnail-']").click( function() {
        fpid = $(this).attr('id').substr(28);
        var r = jQuery.get("/properties/main-featured-property-html/"+fpid+"/", null, replace_main_featured_property);
        return false;
    });
});
