(function()
{
	Kokob = {
		addToMailingList: function()
		{
			var choice = $("input:radio[@name=signup]:checked").val();
			$.post($.appUrl + "ajax_general.php", 
				{ "action": "addToMailingList", "email": $("#subscribe_email").val(), "choice": choice },
				function(response)
				{
					$("#mailing_message").show();
					if (response.success == 1)
					{
						$("#mailing_message").text(response.message);
					}
					else
					{
						$("#mailing_message").text(response.message);
					}
				},
				"json"
			);
		}
	}
})();