
window.addEvent('domready', function() {
	$$('.clearonfocus').addEvent('focus', function() {
		if (this.value != this.defaultValue || this.cleared) return;
		this.setProperty('value', '');
		this.cleared = true;
	});
});
