﻿$(document).ready(function() {

    $('.price').fadeTo(0, 0.7);

    //Кнопка купить
    $('.buy').hide('fast').slideUp(0).fadeTo(0, 0.6);

    $('.category-list li').hover(function() {
        $('.buy', $(this)).slideDown(500);
    });

    $('.category-list li').mouseleave(function() {
        $('.buy', $(this)).slideUp(250);
    });

    LoadCartView();
	
});

function LoadCartView() {
    $.post('/Cart/Small',
            {},
            function(html) {
                SetCartHtml(html);
            }, 'html');
}

function SetCartHtml(html) {
    if (html == '') {
        $('#cart-ph').html(html).removeClass('visible');
    }
    else {
        $('#cart-ph').html(html).addClass('visible').show();
    }
}