﻿function cartCallBack(Element) {

    var AddProductData = new Array();
    var unitPrice = "";

    if ($(Element).parents(".doporucujemeWrap").find(".unitPrice")[0] != null) {
        unitPrice = $(Element).parents(".doporucujemeWrap").find(".unitPrice").html();
    }

    if (unitPrice == "") {
        if ($(Element).parents(".listItem").find(".unitPrice")[0] != null) {
            unitPrice = $(Element).parents(".listItem").find(".unitPrice").html();
        }
    }

    if (unitPrice == "") { unitPrice = $(".unitPrice").html(); }

    AddProductData["Quantity"] = 1;
    AddProductData["UnitPrice"] = unitPrice;

    $.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;
}


