// JavaScript Document

    var current = 'one'
    function show(id) {
      document.getElementById(current).style.visibility = 'hidden';
      document.getElementById(id).style.visibility = 'visible';
      current = id;
    }

window.onload = function () {
	show();
}