Event.observe(window, 'load', readForms);

function readForms() {
	var forms = $A(document.getElementsByTagName("form"));
	forms.each(function(formel) {
		new Validation(formel);		
	});

}
