Event.observe(window, 'load', function(){
	$('e').focus();
	$('contact').observe('submit', function(event){		
		$('sending').style.display="inline";
		var ajax = new Ajax.Request($('contact').readAttribute('action'), {
			method:'post',
			parameters: $('contact').serialize(true),
			onComplete: function() {
				$('sending').style.display="none";
				$('s').value = "";
				$('m').value = ""
				$('sent').style.display="inline";
			}
		});
		Event.stop(event);
	});
});