// JavaScript Document
jQuery(document).ready(function($)
{
	jQuery('#ppDonate').submit(function() {
		if (jQuery('#ppAmount').val() > null)
		{
			if (jQuery('#ppAmount').val() < 20)
			{
				jQuery('#noAmount').hide();
				jQuery('#moreAmount').fadeIn();
				return false;
			}
			else
			{
				jQuery('#moreAmount').hide();
				jQuery('#noAmount').hide();
				jQuery('#ppGo').fadeIn();
				return true;
			}
		}
		else
		{
			jQuery('#moreAmount').hide();
			jQuery('#noAmount').fadeIn();
			return false;
		}
	});
});

jQuery(document).ready(function($) {
  $('a:empty').parents('li').hide();
});

window.onload = function() {
  document.getElementById("ppAmount").focus();
};
