var giardino = {
	
	model: {
		
		Index: {
			
			init: function () {
				var form = new Form(document.fContact);
				form.onSubmitException(
					function () {
						//return Message.say(3);
						alert("Make sure to complete all the required fields");
						return false;
					}
				);
			}
			
		}
		
	}
	
}

