function revmsg_success() {
	jQuery('#revmsg-loading').css('display', 'none');
	jQuery('#revmsg-success').css('display','block');
}
function revmsg_failure() {
	jQuery('#revmsg-loading').css('display', 'none');
	jQuery('#revmsg-form').css('display', 'block');
	jQuery('#revmsg-failure').css('display', 'block');
}
jQuery(document).ready(function() {
	var url = jQuery('#revmsg-form').attr('action');
	jQuery('#revmsg-form').attr('action', 'javascript:void(0);');
	jQuery('#revmsg-form').submit(function() {
		jQuery('#revmsg-form').css('display', 'none');
		jQuery('#revmsg-loading').css('display', 'block');

		var final_url = url+'/false/phone:'+encodeURIComponent(jQuery('#revmsg-phone-number').attr('value'))+'/?jsoncallback=?';
		jQuery.getJSON(final_url, function(error) {
			if(error) { revmsg_failure(); } else { revmsg_success(); }
		});
	});
});

