$(document).ready(function() {

    // Hook up TripAdvisorAjaxLoads
    $(".fetchingTA").each(function() {
    
        var hotelname = this.id;
        var that = this;   

        $.ajax({
            type: "POST",
            url: "/_assets/dynamic/Modules/TripAdvisor/WS/TripAdvisor.asmx/GetTAPanel",
            data: "&id=" + hotelname,
            dataType: "html",
            success: function(data) {
                $(that).html(data);
            },
            error: function(XMLHttpRequest, textStatus, errorThrown) {
                //this;  //the options for this ajax request
            }
        });

    });


});