$(document).ready(function(){
    $("#form-cart-address").validate({
        errorLabelContainer: "#form-error"
    });

    $("#form-contact").validate({
        errorLabelContainer: "#form-error"
    });

    $("#menu a.collapsed + ul").hide();
    $("#menu a.expanded + ul").show();
    $("#menu > li > a.prevent").click(function(e) {
        e.preventDefault();
    });
    $("#menu a.collapsible").click(function(e) {
        e.preventDefault();
        $(this).toggleClass("expanded").toggleClass("collapsed").find("+ ul").slideToggle('medium');
    });
});

function deleteFromCart(el, cat_n, product_id)
{
    $.alerts.overlayOpacity = .2;
    $.alerts.overlayColor = '#000';
    $.alerts.okButton = '&nbsp;Да&nbsp;';
    $.alerts.cancelButton = '&nbsp;Не&nbsp;';

    jConfirm('Сигурни ли сте, че желаете да изтриете от кoличката <br />артикул с Кат.N: <strong>'+cat_n+'</strong> ?', 'Премахни от количката', function(r) {
        if (r){
            window.location=rootURL+'cart/delete/'+product_id;
        }
    });
}



