$(document).ready(function()
{
	$('#cart-add').submit(function()
	{
		var action = $(this).attr('action');
		var req = {};
		for (var i = 0; i < this.elements.length; i++)
		{
			var $elem = $(this.elements[i]);
			var name = $elem.attr('name');
			if (name)
			{
				var type = $elem.attr('type');
				var value = $elem.val();
				if ((type != 'checkbox' && type != 'radio') || $elem.attr('checked'))
					req[name] = value;
			}
		}
		$.post(action, req, function(data)
		{
			$('#content_additional').html(data);
		});
		return false;
	});
	
	$('.cart-del').livequery('click', function()
	{
		var href = $(this).attr('href');
		$.post(href, {}, function(data)
		{
			$('#content_additional').html(data);
		});
		return false;
	});
});
