function donateButton(ajax_url) {
	$.ajax({
		url: ajax_url
		, type: 'GET'
		, dataType: 'text'
		, timeout: 1000
		, success: function(result) {
			$("#donate").html(result);
		}
		, error: function(result) {
			alert('There was an error! Please try again!');
		}
	});
}

function YouTube(ajax_url) {
	$.ajax({
		url: ajax_url
		, type: 'GET'
		, dataType: 'text'
		, timeout: 1000
		, success: function(result) {
			$("#video").html(result);
		}
		, error: function(result) {
			alert('There was an error! Please try again!');
		}
	});
}