﻿$(function () {
    if ($.cookie('apklausa') == '1') {
    }
    else {
        $.cookie('apklausa', '1', { expires: 1 });
        $('#dialog').jqm({
    toTop:                                      true,
    modal:                                      true
    });
        $('#dialog').jqmShow();

        $('#startApklausa').click(function () {
            $('#modelApklausa').html('<br/><p align="center"><img src="/images/loading.gif" alt="Palaukite..."/></p>');
            $('#modelApklausa').load('/apklausa/apklausa_1_forma.aspx');
        });
        $("#endApklausa").live("click", function () {
            var arr = [];
            var value = "";
            $("#modalText input[type='radio']:checked").each(function () {
                value += this.value + ",";
            });
            value = value.slice(0, -1);
            $.post('apklausa/insertToDb.asp', {
                act: 'insert',
                data: value
            }, function (data) {
                if (data == "1") {

                }
            });
        });

        $(".cancelApklausa").live("click", function () {
            if (this.id != 'endApklausa') {
                $.post('apklausa/insertToDb.asp', {
                    act: 'cancel'
                }, function () { });
            }

            $('#dialog').jqmHide();
        });
    }
});
