function init(){

	new Accordion($$('dl#menu dt'), $$('dl#menu dd'), {alwaysHide: true, show: 10});
	
}



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();
	
}
