﻿function cartCallBack(Element) {


    var AddProductData = new Array();

    var txtCount = "-";

    if ($(Element).parents(".productListWrap").find(".inputCount")[0] != undefined) {
        txtCount = $(Element).parents(".productListWrap").find(".inputCount")[0].value;
    }

    if (txtCount == "-") {
        if ($("#txtProductCount")[0] != undefined) txtCount = $("#txtProductCount")[0].value;
    }

    if (txtCount == "-") txtCount = 1;

    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;
}


