if (document.images) {
    img1 = new Image();
    img1.src = "./gfx/nav-bg.png";
}

function showMenu(id) {
	$(id).show();
}

function hideMenu(id) {
	$(id).hide();
}