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