function mover(img) {
	img.src = img.src.replace("menu_", "menu_over_");
}

function mout(img) {
	img.src = img.src.replace("_over", "");
}

function showImage(obj, w, h) {
	box("<img src=\""+obj+"\">", w+5, h+15);
}