$(document).ready( function() {
    if (typeof(prodCode) != 'undefined')
    {
        $.getJSON("http://site.costumecity.com/yreviews/avgrating_json.php?CODE=" + prodCode + "&jsonp=?",
            function(data){
                $("#ytimesAvgRating").html(data);
            });
            $.getJSON("http://site.costumecity.com/yreviews/reviews_json.php?CODE=" + prodCode + "&jsonp=?",
                function(data){
                    $("#ytimesReviewsResult").html(data);
            });
    }

    $(".revSect").each( function() {
        var prodCode = $(this).attr("prodid");
        var target = this;
        $.getJSON("http://site.costumecity.com/yreviews/avgratingSection_json.php?CODE=" + prodCode + "&jsonp=?",
            function(data){
                $(target).html(data);
            });

    });
});


