var support = {
	add: function(){
		$.ajax({
			type: 'POST',
			url: "/wp-content/themes/righttorep/handler.php",
			data: {action: "addSupport"},
			success: function(data) {
				if (data.success) {
					$('#support_text').hide("medium");
					$('#support_number').html(data.total);
					$('#support_button').html(data.message);
				}
			},
			dataType: "json"
		});
	}
};
