$(document).ready(function() {
	//
	 $('#button').click(function() {
		$('.loading').show('normal');
		$.post(root_link+'mailing_members/ajaxadd', $('form').serialize(), function(data) {
			$('#hidden_responce').html(data);			
			$('#hidden_responce').show();
			$('.loading').hide('slow');
		});
		return false;
	 });
	
 });



