var selectedCookieOptions;
calculateCookieOptions = function() {
	assortment = jQuery('.cart-edit-items input:radio:checked').val();
	
	if(assortment == 'assorted') {
		$('#cookieOptionsList input').each(function() {
			$(this).attr('checked', true);
		});
	} else {
		$('#cookieOptionsList input').each(function() {
			$(this).attr('checked', false);
		});
	}
}

calculateCookieCheckboxes = function() {
	assorted = true;
	$('#cookieOptionsList input').each(function() {
		if(!$(this).attr('checked')) {
			assorted = false;
		}
	});
	
	if(assorted) {
		$('#ProductOptionAssortmentSelectFlavors').removeAttr('checked')
		$('#ProductOptionAssortmentAssorted').attr('checked', 'checked');
	} else {
		$('#ProductOptionAssortmentAssorted').removeAttr('checked')
		$('#ProductOptionAssortmentSelectFlavors').attr('checked', 'checked');
	}
}

toggleGiftMessage = function() {
	if($('#nogiftmessage:checked').val()) {
		$('#OrderGiftMessage').hide();
		$('#OrderGiftMessage').attr('disabled', 'disabled');
	} else {
		$('#OrderGiftMessage').removeAttr('disabled');
		$('#OrderGiftMessage').show();
		$('#OrderGiftMessage').focus();
	}
}