$(function () {

    $.ajax({
        type: "POST",
        url: "/ajax.asp",
        data: {
            action: "gettop1"
        },
        success: function (theResponse) {
            $(".loader").fadeOut();
            $("#featured_property").html(theResponse);
            $("a[rel=iframe]").fancybox({
                'transitionIn': 'none',
                'transitionOut': 'none',
                'autoScale': false,
                'type': 'iframe',
                'width': 720,
                'height': 480,
                'scrolling': 'no'

            });

        }
    });


});

