﻿(function ($) {
    $(document).ready(function () {
        $("#VideoForm .btnGray").click(function (e) {
            e.preventDefault();
            var input =  $("#VideoFormForm input:text").val();
            if (input == "") {
                $("#VideoForm .required").show();
            } else {
                $("#VideoForm .required").hide();
                $.ajax({
                    url: '/Ajax/Targit/VideoMoreInfo.ashx',
                    data: { input: input },
                    type: "POST",
                    success: function (data) {
                        $("#VideoFormSuccess, #VideoFormForm").toggle();
                        setTimeout(function () { $.fn.CloseVideo(); }, 5000);
                    }
                });
            }
         
        });
    });
})(jQuery);
