$(function() {
	Ataxo = {

		start: function() {
			$('newsletter').each(function() {
				var $self = $(this);

				$self.bind('submit', function(e) {
					var blocked = true;
					e.preventDefault();
				});
			});
		}
	}

	Ataxo.start();

})
