function mostrar( id ){
	var dc = document.getElementById(id)
	
	for( x=1; x <= 10; x++ ){
		if( document.getElementById('smenu'+x) ){
			document.getElementById('smenu'+x).style.display = 'none'
		}
	}
	
	if( dc ){
		dc.style.display = ''
	}
	
}



window.onload =  function(){
	mostrar('')
}
