var last=null;
var verspringen=null;
var verspringob=null;
var terugspringob=null;
var terugspringen=null;
var timeoutID='';

function klick(thiso) {
  if(terugspringob == null) {
    terugspringob = thiso;
  }
  noklick();
  verspringob = thiso;
  verspringen = setTimeout("TisKlick()",400);
}

function leavemenu() {
  noklick();
  terugspringen = setTimeout("TisUnKlick()",800)
}

function noklick() {
  if (verspringen) {
    clearTimeout(verspringen)
  }
  if (terugspringen) {
    clearTimeout(terugspringen)
  }
}

function TisKlick() {
  var color_sel=verspringob.style.backgroundColor;
  if(last){
    last.getElementsByTagName('b').item(0).style.borderBottom='1px solid #FFF';
  }
  verspringob.getElementsByTagName('b').item(0).style.borderBottom='1px solid '+color_sel;
  document.getElementById('lowbar').style.backgroundColor=color_sel;
  last=verspringob;
  var label='H-'+verspringob.id;
  document.getElementById('menu').innerHTML=document.getElementById(label).innerHTML;
}

function TisUnKlick() {
	if (!terugspringob){return true};
  var color_sel=terugspringob.style.backgroundColor;
  if(last){
    last.getElementsByTagName('b').item(0).style.borderBottom='1px solid #FFF';
  }
  terugspringob.getElementsByTagName('b').item(0).style.borderBottom='1px solid '+color_sel;
  document.getElementById('lowbar').style.backgroundColor=color_sel;
  last=terugspringob;
  var label='H-'+terugspringob.id;
  document.getElementById('menu').innerHTML=document.getElementById(label).innerHTML;
}

if (typeof showArt != 'function'){
  showArt = function() {
	  return true;
	}
}