function initialize()
{
	Nifty( "#container", "big" );
	Nifty( "#events div", "big" );
	Nifty( "#services div", "big" );
	if( gEBI( "donateForm" ) )
		gEBI( "donateForm" ).onsubmit = donateContinue;
}
function donateContinue()
{
	gEBI( "otherAmountRadio" ).value = gEBI( "otherAmountText" ).value;
}
function gEBI( a ){ return document.getElementById( a ); }
function say( a, b ){ gEBI( a ).innerHTML = b; }
