$(document).ready(function() {
		
	$('#loading').hide();
	$('#ContactoIndexForm').validate({
		rules: {						
			'data[Contacto][email]': 'required',
			'data[Contacto][name]': 'required',
			'data[Contacto][comment]': 'required'
		},
		messages:{
			'data[Contacto][email]': '',
			'data[Contacto][name]': '',
			'data[Contacto][comment]':''
		},
		errorElement: 'div.textinput',
		
		submitHandler: function() {
		$('#ContactoIndexForm').ajaxSubmit({
				beforeSubmit:function(){
					$('#ContactoIndexForm').fadeOut("slow");
						$('#loading').fadeIn('slow');				
				},
				success: function(responseText, responseCode){
					$('#loading').fadeOut('slow');
					$('#ContactoIndexForm').fadeIn("slow");
				}
			});
		}
	});
});

