var etat = 0;
function montre(tab) {
	
	var str = document.getElementById('select').innerHTML;
	for (i=0;i<tab.length;i++){
		if (i == 0) str = str +"\n";
		var letter = tab[i].substr(0,2);
		var letter2 = letter.toLowerCase();
		if (letter2 != "ne")
		{
			str = str + "<li><a href='http://blog.augeo.com/" + letter2 + "' onMouseOver='if (timer) clearTimeout(timer); montre(tab);'  title='' id=l'" + tab[i] + "'>" + tab[i] + "</a></li>\n";
		}
		else
		{
			str = str + "<li><a href='http://blog.augeo.com/nl/' onMouseOver='if (timer) clearTimeout(timer); montre(tab);'  title='' id=l'" + tab[i] + "'>" + tab[i] + "</a></li>\n";
		}
	}
	if (etat ==0){
		document.getElementById('select').style.zIndex = 100;
		document.getElementById('menu').style.zIndex = -1;
		document.getElementById('select').innerHTML = str;
		etat = 1;
	}
}
function cache() {
	var str = "";
	str = str +"<li><a href='#' title='' onclick='montre(tab);' class='titre'>Choisissez la langue</a></li>";
	if (etat == 1){
		document.getElementById('select').style.zIndex = 0;
		document.getElementById('menu').style.zIndex = 0;
		document.getElementById('select').innerHTML = str;
		etat = 0;
	}
}