window.addEvent('domready', function() {
	$('contactform').addEvent('submit', function(e) {
		e.stop();
		var fieldEmpty = false;
		$$('#contactform .field').each(function(field){
			if(!field.value && !fieldEmpty) {
				//console.log('here');
				fieldEmpty = true;
				field.focus();
				window.alert('Täytä kenttä.');
			}
		});
		if(fieldEmpty) {
			return;
		}
		$('yhteydenotto').addClass('ajaxhidden');
		this.set('send', {onComplete: function(response) {
			$('kiitos').set('html', response);
			$('kiitos').removeClass('ajaxhidden');
		}});
		this.send();
	});
});

