// JavaScript Document
	$(document).ready(function() { 
		$("#registerForm").validate ( {
		
		showErrors: function(errorMap, errorList) {
		$("#warning").html("The form has " + this.numberOfInvalids() + " errors.");
		this.defaultShowErrors();
		},
		debug: false,
		errorElement: "div",
		errorContainer: $("#warning")
		}); 

		$("#depositForm").validate ( {
		showErrors: function(errorMap, errorList) {
		$("#warning").html("The form has " + this.numberOfInvalids() + " errors.");
		this.defaultShowErrors();
		},
		debug: false,
		errorElement: "div",
		errorContainer: $("#warning")
		}); 	
		
		$("#updateForm").validate ( {
		showErrors: function(errorMap, errorList) {
		$("#warning").html("The form has " + this.numberOfInvalids() + " errors.");
		this.defaultShowErrors();
		},
		debug: false,
		errorElement: "div",
		errorContainer: $("#warning")
		}); 	
		
	});
