

window.addEvent('domready', function() {
	$$('tr.invalid input').highlight('#900000');
	$$('tr.invalid textarea').highlight('#900000');
	$$('.errorbox').highlight('#900000');
});

function glowbuttoneffect(element, color) {
	color = color || '#FF3C00';
	element.addEvent('mouseenter', function() {
		this.tween('background-color', color);
	}.bind(element));
	element.addEvent('mouseleave', function() {
		this.tween('background-color', '#EEEEEE');
	}.bind(element));
}
