var ttmoff_elem="none";
var ttmoff_timeout = 0;
var timeout_time=1300;

function mover_sg(fff) {
  if (ttmoff_elem != "none")
    document.getElementById(ttmoff_elem).style.display = "none";
  ttmoff_elem = fff;
  clearTimeout(ttmoff_timeout);
  document.getElementById(fff).style.display = "block";

}
function moff_sg(fff) {
  clearTimeout(ttmoff_timeout);
  ttmoff_timeout = setTimeout("tt_moff_sg('" + fff + "')",timeout_time);
}

function tt_moff_sg(fff) {
  document.getElementById(fff).style.display = "none";
}

