$(function(){

	$("#donatebutton").click(function(){
		$("html,body").animate( { scrollTop: $("#donate").offset().top }, 500, function(){
			$("#donate").animate( { opacity: "0.3"  }, 50, function(){
				$(this).animate( { opacity: "1.0"  }, 100, function(){
					$(this).animate( { opacity: "0.3" }, 50, function(){
						$(this).animate( { opacity: "1.0" }, 100);
					} );
				} );
			} );
		} );
		return false; 
	} );

});