﻿function cartCallBack(Element) {

    var txtCount = "-";
    if ($(Element).parents("#boxMain").find(".inputCount")[0] != undefined) {
        txtCount = $(Element).parents("#boxMain").find(".inputCount")[0].value;
    }

    if (txtCount == "-") txtCount = 1;
    var AddProductData = new Array();
    AddProductData["Quantity"] = txtCount;

    $.blockUI(
    {
        message: 'Zboží bylo přidáno do košíku.....',
        css: {
            fontSize: '20px',
            fontWeight: 'bold',
            border: 'none',
            padding: '15px',
            backgroundColor: '#000',
            '-webkit-border-radius': '10px',
            '-moz-border-radius': '10px',
            opacity: 0.5,
            color: '#fff'
        },
        overlayCSS: {
            backgroundColor: '#000',
            opacity: 0.4
        }
    });

    setTimeout($.unblockUI, 2000);


    return AddProductData;
}


