$(document).ready(function()
{
	$('input[name=cancel]').click(function()
	{
		$(this).parent().find('input:checked').removeAttr('checked');
		$(this).prev().val('');
		updateQuantity('brochure');updateQuantity('book');updateQuantity('tshirt');
		return false;
	});
	$('input[name=brochure-other]').click(function()
	{
		$(this).prev().attr('checked','checked');
		updateQuantity('brochure');updateQuantity('book');updateQuantity('tshirt');
	});
	$('input[name=book-other]').click(function()
	{
		$(this).prev().attr('checked','checked');
		updateQuantity('brochure');updateQuantity('book');updateQuantity('tshirt');
	});
	$('input[name=tshirt-other]').click(function()
	{
		$(this).prev().attr('checked','checked');
		updateQuantity('brochure');updateQuantity('book');updateQuantity('tshirt');
	});
});