// These functions are used within the modified DonatePlus plugin
function checkForOtherReason() { 
	var reason = jQuery("#reason").val();
	jQuery("#custom").val(reason);
	if (reason == "Other")
		jQuery("#or").toggle("slow");
	else 
		jQuery("#or").css("display", "none");
}

function captureOtherReason() {
	var otherreason = jQuery("#otherreason").val();
	if (otherreason != '')
		myreason = "Other: ";
	myreason += otherreason;
	jQuery("#custom").val(myreason);
}

// end Donate Plus functions