


addLoadEvent(
	function(){
		for (var i=0; i<document.forms.length; i++) {
			
			addEvent(document.forms[i], "submit", 
				function() {
					if (!this.submitted) {
						this.submitted = true
						return true
					}
					else return false
				}
			)
			
		}
	}
)
