var EcobotForm = new Class({

	// extensions & implementations
	Implements: [Events, Options],
	
	// constructor
	initialize: function () {
	},
	
	hint: function (input, html) {
		var hint = new Element('span', { 'class':'hint', 'html':html });
		hint.inject(input, 'after');		
	}
		
});