$(function(){
	$('form.prodListForm').submit(function(){
		$('.cpCart').cartMa('afterSendSuccess',function(obj,callback,data,toShow){
			callback(data,toShow);
			$('#cartCount').html(data.items_count);
			$('#cartValue').html(data.items_value);
			$('#cartToFreeShipping').html(data.to_free_shipping);
		});
		$('.cpCart').cartMa("send", 'action=add&idItem=' + $(this).parent().find('input[name="sidvariation"]').val() + '&quantity=' + $(this).parent().find('input[name="quantity"]').val());
		return false;
  });
});
