function placeObject(id, x, y) {
	id.style.left = x;
	id.style.top = y;
}
function hideMenu(id) {
	id.style.visibility = "hidden";
}
function showMenu(id, x, y) {
	placeObject(id, x, y);
	id.style.visibility = "visible";
}
