﻿	function subscribe()
	{
		var email;
		email = $('#subscribe_email').val();
		
		$.post('/user/subscribe',{ email:email},ajaxResponse, 'json');
		
		function ajaxResponse(response)
		{
			jAlert(response.response_msg, 'Системное сообщение');
		}
	}