$(document).ready(function(){
	
	
	 
 /*
 
	$("form.newsletterFormAdd").each(function(){
		
		
		var o = { 
			target:        $(this).find(".formSending"),   // target element(s) to be updated with server response 
			beforeSubmit: function (formData, jqForm, options) { 
					// formData is an array; here we use $.param to convert it to a string to display it 
					// but the form plugin does this for you automatically when it submits the data 
					//alert($(jqForm).html());
					var h = $(jqForm).outerHeight();
					
					$(jqForm).find(".formSending").css("height", h+"px")
					
					$(jqForm).find(".formSending").show().html('<div class="loading" style="height: '+h+'px"></div>');
					$(jqForm).find(".formFields").hide();
							
			},  // pre-submit callback 
			//success:       showResponse  // post-submit callback 
			
			// other available options: 
			//url:       url         // override for form's 'action' attribute 
			//type:      type        // 'get' or 'post', override for form's 'method' attribute 
			//dataType:  null        // 'xml', 'script', or 'json' (expected server response type) 
			//clearForm: true        // clear all form fields after successful submit 
			//resetForm: true        // reset the form after successful submit 
	 
			// $.ajax options can be used here too, for example: 
			//timeout:   3000 
    	}; 
		
		$(this).ajaxForm(o);
		
	}) 
	
	
	
	*/
	
})


