document.observe("dom:loaded", function() {
	if($('edit_bio')) //Owner of the record
	{
		$('edit_bio').observe('click', show_bio_form);
	}
});

function show_bio_form (event) {
	Event.stop(event);
	$('bio_text').hide();
	$('edit_bio').hide();
	$('edit_minibio_div').show();
}

function minibio_saving() {
}

function minibio_saved(request) {
	$('edit_bio').show();
	$('edit_minibio_div').hide();
	$('bio_text').update(request.responseText).show();
	$('bio_text').highlight({startcolor: '#f29e00', endcolor: '#d7d8d9'});
	
}

function show_login(message) {
	alert("Login screen should show with a message of " + message);
}

