function init_niceForms() {
	var todo = $$('#globalContent .field');
	todo.each(function(obj) {
		obj.observe('mouseover', function() { this.addClassName('hovered'); });
		obj.observe('mouseout', function() { this.removeClassName('hovered'); });
		obj.observe('click', function() { 
			var tgt;
			tgt = this.down('input');
			if (!tgt) {
				tgt = this.down('select');
			}
			if (!tgt) {
				tgt = this.down('textarea');
			}
			if (tgt) {
				tgt.focus();
			}
		});
	});
	var todo = $$('#globalContent input, #globalContent select, #globalContent textarea');
	todo.each(function(obj) {
		obj.observe('focus', function() { this.addClassName('focused'); });
		obj.observe('blur', function() { this.removeClassName('focused'); });
	});
}

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