function donate() {
	$("body").css('overflow', 'hidden')
	$("#lightbox").show();
	$("#donatebox").show();
	$( 'html, body' ).animate( { scrollTop: 0 }, 0 );
}
function closedonate() {
	$("body").css('overflow', 'auto');
	$("#donatebox").hide();
	$("#lightbox").hide();
}
function newsletter() {
	$("body").css('overflow', 'hidden')
	$("#lightbox").show();
	$("#newsletterbox").show();
	$( 'html, body' ).animate( { scrollTop: 0 }, 0 );
}
function closenewsletter() {
	$("body").css('overflow', 'auto');
	$("#lightbox").hide();
	$("#newsletterbox").hide();
}
$(document).ready(function() {

});
