$(document).ready(function(){

	$("#contactoform").submit(function(){
	
	var str = $(this).serialize();
	
	   $.ajax({
	   type: "POST",
	   url: "includes/contacto_funcs.php",
	   data: str,
	   success: function(msg){
	
	$("#note").ajaxComplete(function(event, request, settings){	
		if(msg == 'OK')
		{
			result = '<div class="notification_ok">Su mensaje ha sido enviado.</div>';
			$('#campos').fadeOut(350);
		}
		else
		{
			result = msg;
		}	
		$(this).html(result);
	});
	
	}
	
	 });
	
	return false;
	
	});

});
