function CVF_Custom_Script() { var otherAmountReferenceName = "cvfctrl224";
var amountButtonsReferenceName = "cvfctrl223";

var amnt = $cvf("[type='hidden'][data-field='cv_donationAmount'][data-refname='amnt'][data-togglegroupcid='"+amountButtonsReferenceName+"']");
var otherAmnt = $cvf("#"+otherAmountReferenceName);
var otherAmntButtons = $cvf( "[class='btn-group btn-group-responsive'][data-toggle='buttons'][data-togglegroupcid='"+amountButtonsReferenceName+"']" ).children();




otherAmntButtons.each(function () {
	$cvf(this).click(function(){
		otherAmnt.val(null);
	});
});

otherAmnt.click(function(){
	otherAmntButtons.each(function () {
		if($cvf(this).hasClass("active")){
			$cvf(this).removeClass("active");
			btnSelected = true;
			amnt.val(null);
		}
	});
}); }