jQuery(document).ready(function($){
	$('#newsletter-form').each(function(){
		$(this).bind('submit',function(){
			var form = $(this);
			$('.submit-btn',this).fadeTo(0.1,0.4);
			var d = 'ajax=1&'+$(this).serialize();
			$.ajax({
				type: $(this).attr("method"),
				url: $(this).attr("action"),
				data: d,
				success: function(response){
					$(form).next('.form-response').html(response);
					$('.submit-btn',form).fadeTo(0.1,1.0);
				}
			});
			return false;
		});
	});
});