function handle_response(r) {
	eval(r.responseText)
}
function email_init() {
	if ($('contact-form')) Event.observe('send', 'click', submit_contact_form)
}

function submit_contact_form(e) {
	fields = Form.serialize($('contact-form'))
	Form.disable('contact-form')
//	new Ajax.Request('email.php', {method:'post', postBody:fields})
	new Ajax.Request('email.php', {method:'post', onSuccess:handle_response, postBody:fields})
	Event.stop(e)
}
Event.observe(window, 'load', email_init )