//Affiche un élément
function showEl(a) {
	document.getElementById(a).style.display='block';
}

//Cache un élément
function hideEl(a) {
	document.getElementById(a).style.display='none';
}

var tempo = null;
function time(e) {
tempo = setTimeout(function() {hideEl(e);}, 500);
}

function show(e) {
clearTimeout(tempo);
hideEl("sub-one");
hideEl("sub-two");
hideEl("sub-three");
/*for (i=1; i<3; i++) {
	document.getElementById("drop" + i).style.display = 'none'; 
	}*/
document.getElementById(e).style.display = 'block';
}