jQuery(document).ready(function() {
jQuery("#AjaxOn").hide();
jQuery('#nForms').ajaxForm({
    type:       'post',
	url:        '/newsletter',
	clearForm: true,
	beforeSubmit: function(){
		jQuery("#AjaxOn").show();
		jQuery("#AjaxOff").hide();
	},
     success: function(e) {
       jQuery("#AjaxOn").hide();
	   jQuery("#AjaxOff").show();
	   jQuery("div.result").html(e).show('slow',function(){
		jQuery(this).animate({backgroundColor:'#008CFF', color:'#EFF8FF', borderLeftColor:'#000'}, 2000);
	},function() {
		jQuery(this).animate({backgroundColor:'#fff', color:'#444', borderLeftColor:'yellow'}, 2000);
	});
     }
  });
});