﻿$(document).ready(function () {
    $.ajax({
        url: "/Ajax/index/index_right.ashx",
        type: "get",
        success: function (msg) {
            if (msg.length > 0) {
                $(".bcot_on2you p").eq(1).html(msg);
            }
        }
    });
});
