$(document).ready(function() {
	// validate signup form on keyup and submit
	var validator = $("#ContactForm").validate({
		rules: {
			nome: {
				required: true,
				notEqualToTitle: true
			},
			email: {
				required: true,
				email: true,
				notEqualToTitle: true
			},
			assunto: {
				required: true,
				notEqualToTitle: true
			},
			mensagem: {
				required: true,
				notEqualToTitle: true
			}
		},
		// the errorPlacement has to take the table layout into account
		errorPlacement: function(error, element) {
			if ( element.is(":radio") )
				error.appendTo( element.parent().next().next() );
			else if ( element.is(":checkbox") )
				error.appendTo ( element.next() );
			else
				error.appendTo( element.parent().next() );
		},
		// specifying a submitHandler prevents the default submit, good for the demo
		/*submitHandler: function() {
			alert("submitted!");
		},*/
		// set this class to error-labels to indicate valid fields
		success: function(label) {
			// set &nbsp; as text for IE
			label.html("&nbsp;").addClass("checked");
		}
	});
	
});

