var active;

function startclose(){
     active = window.setTimeout("closeAll()",500);
}

function stopclose(){
     if(active) window.clearTimeout(active);
}

function openMenu(el){
	if($(el)) {
		$(el).show();
	}
	stopclose();
	return false;
}

function closeMenu(el){
	if($(el)) {
		$(el).hide();
	}
	stopclose();
	return false;
}

function closeAll(){
  	closeAllByName("child");
	stopclose();
}

function closeAllByName(name){
	stopclose();
	var c = document.getElementsByClassName(name);
	c.each(function(item) { 
			item.hide();
	});
}

function showText(nr){
	closeAllByName('schmuckstuecke');
	el = 'thirdNavi'+nr;
	if($(el)) {
		$(el).show();
	}
	// return false;
}
