function init(){
	new Accordion($$('h3.display'), $$('div.stretcher'), {display: 5});
}

function sendMail() {
	$('mail').style.display = 'none';	
	$('sending').style.display = '';	
	$('s_in_progress').style.display = '';	
	$('s_ready').style.display = 'none';	
	$('s_failure').style.display = 'none';	
	new Ajax('sendMail.php', {
		method: 'post',
		postBody: $('sendmail'),
		onComplete: function(response){
			var toShow = (response=="Sent")?'s_ready':'s_failure';
			$('s_in_progress').style.display = 'none';	
			$(toShow).style.display = '';	
		}
	}).request();
}
