if (document.getElementById && document.createElement) {

  var dragHandle = document.getElementById("handle");
  dragHandle.style.cursor="move";

  var dragRoot = document.getElementById("content-page");
  Drag.init(dragHandle, dragRoot);

  dragRoot.onDrag = function() {
  dragHandle.style.cursor="move";
  }

  var toolTip = document.getElementById("tooltip");
  toolTip.innerHTML = "Click and hold to drag.";
  dragHandle.onmouseover = function() {
  toolTip.style.visibility="visible";
  }

  dragHandle.onmouseout = function() {
  toolTip.style.visibility="hidden";
  }

  document.getElementById("show-page").onclick = function() {
  show_('page'); return false; }

  document.getElementById("hide-page").getElementsByTagName("a")[0].onclick = function() {
  hide_('page'); }

}