﻿
$(function () {


    var html = "";

    $.ajax({
        type: "POST",
        url: "default.aspx/CarregarTV",
        contentType: "application/json; charset=utf-8",
        data: "{ }",
        dataType: "json",
        async: true,
        complete: function () {
           
        },
        success: function (result) {
            var banners = eval("(" + result.d + ")");

            $(banners).each(function () {
                html += "<div>";
                html += "<a href=\"" + this.Url + "\" target='_blank'>";
                html += "<img src=\"" + this.Img + "\" alt=\"" + this.Alt + "\" />";
                html += "</a>";
                html += "<div class=\"TextoTV\">";
                html += "<b>"+ this.Nome + "</b> <br/>";
                html += this.Descricao;
                html += "</div>";
                html += " </div>";
            });

            $("#carregandoDestaques").hide();
            $("#slidingFeatures").append(html).show();

            $('#slidingFeatures').jshowoff({
                effect: 'slideLeft',
                controlText: { play: 'Play', pause: 'Pause' },
                hoverPause: true,
                changeSpeed: 1000,
            });

        }
    });
});
