Cómo cambiar este javascript solo para usar solo 1 enlace

Tengo javascript: - cuando hacemos clic en el enlace 'inicio', muestra cosas de la casa, luego cuando hacemos clic en el enlace 'acerca de' muestra las cosas relacionadas. Cómo hacer esto solo para tener un botón y ese botón 1 debería poder cambiar los enlaces en los clics. Aquí está el código.

<script type = "text/javascript" > function show(page) {
var html = "";
switch (page) {
    case "home":
        html = 'All the stuff of the page';
        break;
    case "about":
        html = 'All the stuff of the pahe';
        break;
    case "contact":
        html = "This is the contact page<br />...";
        break;
}
document.getElementById('container').innerHTML = html;
</script>

Un violín de trabajo.

Respuestas a la pregunta(3)

Su respuesta a la pregunta