	window.addEvent('domready', function() {
		$$('form#add').each(function(item) {
			item.addEvent('submit', function(e) {
				if($('paste').value == '') {
					new Event(e).stop();
					var fx = $('paste').effects({transition:Fx.Transitions.Quint.easeOut});
					fx.start({
						'background-color' : ['#FFFFF', '#FFF6F6'],
						'border-color': ['#FFCACA', '#980000']
					});
					$('paste').focus();
				}
				/*
				else {
					$$('input').each(function(item) {
						item.setStyle('border-color', 'transparent');
						item.setStyle('background-color', 'transparent');
					});
					$$('textarea').each(function(item) {
						item.setStyle('border-color', 'transparent');
						item.setStyle('background-color', 'transparent');
					});
				}
				*/
			});
		});
	});

	function check(id) {
		document.getElementById(id).checked = 'checked';
	}