var yrewurl = "http://site.elights.com/yreviews/";

$(document).ready( function() {
    if (typeof(prodCode) != 'undefined')
    {
        $.getJSON(yrewurl + "avgrating.php?CODE=" + prodCode + "&jsonp=?",
            function(data){
                $("#ytimesAvgRating").html(data);
				$('#writeLink').click(function (e) {
					e.preventDefault();
					$('<iframe src="' + yrewurl + 'writereview.php?CODE=' + prodCode + '" width=380 height=390 frameborder=0 marginheight=6 marginwidth=6 scrolling=no id=wframe></iframe>').modal();
				});
            });
            $.getJSON(yrewurl + "reviews.php?CODE=" + prodCode + "&jsonp=?",
                function(data){
                    $("#ytimesReviewsResult").html(data);
					$('#writeLink2').click(function (e) {
						e.preventDefault();
						$('<iframe src="' + yrewurl + 'writereview.php?CODE=' + prodCode + '" width=380 height=390 frameborder=0 marginheight=6 marginwidth=6 scrolling=no id=wframe></iframe>').modal();
					});
            });
    }

    $(".revSect").each( function() {
        var prodCode = $(this).attr("prodid");
        var target = this;
        $.getJSON(yrewurl + "avgratingSection.php?CODE=" + prodCode + "&jsonp=?",
            function(data){
                $(target).html(data);
            });

    });
});
