function bulleShow(what) {
	new Effect.Appear(what, { duration: 0.5 });
	return;
};

function bulleHide(what) {
	new Effect.Fade(what, { duration: 0.5 });
	return;
};