﻿$(function () {
    var topo = $(".TopoAudio");
    if (topo.html() != null && topo.html() != undefined) {
        jwplayer().setVolume(20);
        $.post("ajax/somajax.aspx", function (data) {
            if (data == "1") {
                $("#linkPause").show();
                $("#linkPlay").hide();
                jwplayer().play();
            }
            else {
                $("#linkPause").hide();
                $("#linkPlay").show();
            }
        });
        topo.click(function () {
            jwplayer().play();
            $.post("ajax/somajax.aspx", { s: 1 }, function (data) {
                if (data == "1") {
                    $("#linkPause").show();
                    $("#linkPlay").hide();
                }
                else {
                    $("#linkPause").hide();
                    $("#linkPlay").show();
                }
            });
        });
    }
});
