var Cart = {};

Cart.add = function(params) {
	
	if(params.quantity < 1) {
		return;
	}
	
	$.ajax({
		url: '/ajax.php',
		dataType: 'json',
		type: 'post',
		data: {
			command: 'put',
			id: params.id,
			quantity: params.quantity,
			color: (params.color ? params.color : 0)
		},
		success: function(response) {
			
			if(response.success) {
				
				//Cart.refresh(response.sum);
				var html = '';
				html += '<div class="cart-element">';
				html += '<div class="title">' + response.title + '</div>';
				html += '<div class="price">' + response.price + ' руб. x' + response.quantity + '</div>';
				html += '</div>';
				$('#login #cart-elements').append(html);
				$('#empty-cart').remove();

				$.jGrowl("Товар добавлен в корзину");

				// Show cart
				Checkout.showCart();
				
			
			} else {
			
				switch(response.message) {
				
					case 'not_enough':
						alert('На складе недостаточно товара');
						break;
				
				}
			
			}
			
		}
	
	});
	
};



Cart.refresh = function(sum) {

	$('#cart_sum').text(sum);

}
