  var _textBlock=[
    "social", "counselling", "support", "condoms", "workshops", "intro"
  ];


  var _showDefault="intro";

  function _clear(_id)
  {
    var _subDiv=document.getElementById(_id);
    with (_subDiv.style)
    {       
      display="none";
      visibility="hidden";
    };
  };

  function _show(_id)
  {
    var _i, _n=_textBlock.length;
    for (_i=0; _i<_n; _i++)
    {
      _clear(_textBlock[_i]);
    };

    var _subDiv=document.getElementById(_id);
    with (_subDiv.style)
    {       
      display="block";
      visibility="visible";
    };
  };

  function _set(_id)
  {
    _show(_id);
    //_setCookie("showThis", _id);
    _showDefault=_id;
  };

  function _default()
  {
    _show(_showDefault);
  };



