window.addEvent('load',function() {
	$$('.errorField').each(function(el) {
		el.set('morph', { duration: 3000, transition: 'cubic:out' });
		el.morph({'background-color':['#ffff00','#ffffff']});
	});
});


window.addEvent('domready',function() {
	$$('.formElement').each(function(el) {
		var origStyles = el.getStyles('color','background-color','border-top-color', 'border-right-color', 'border-bottom-color', 'border-left-color');
		origStyles['background-color'] = '#ffffff';
		el.set('morph', { duration: 400, transition: 'cubic:out' });
		el.addEvents({
			'focus':function(ev) {el.morph({'background-color':['#ffffff','#ffffe0'],'border-color':'#666666'});},
			'blur':function(ev) {el.morph(origStyles);}
		});
	});
	
	
	
});