	/**
	 * vierzehn-elf 
	 * Menue-Scripts
	 * by Jan Fanslau (c)2010
	 * office@jan-fanslau.de
	 */

var timerVar;
function showSubMenue(id){
	clearTimeout(timerVar);
	hideAll();
	$('#'+id).show();
}

function startTimer(id){
	timerVar = window.setTimeout(hideAll, 1000);
}

function hideAll(){
	$('#subMenue1').hide();
	$('#subMenue2').hide();
}

function stopTimer(){
	clearTimeout(timerVar);
}


