
function swapMenu(menuNivel1Id) {
	$('#'+menuNivel1Id).show()
}

function swapMenuRestore(menu1Id) {
	MM_swapImgRestore()
	$('#'+menu1Id).hide()	
}

function swapMenu2(menu2Id) {
	//mostra o id passado e esconde os outros
	$('li.subSelected').each(function(){
		this.className = 'sub'
	})
	
	$('ul.submenu2').each(function(){
		this.style.display = 'none'
	})
	
	if(typeof(menu2Id) != 'undefined')	 {
		$('#'+menu2Id+"2").show()
		$('#'+menu2Id).attr('class', 'subSelected')
	}
}

function swapMenu2Restore() {
	//mostra o id passado e esconde os outros
	$('ul.submenu2').each(function(){
		this.style.display = 'none'
	})
	
	$('li.subSelected').each(function(){
		this.className = 'sub'
	})
	
	$('#'+menu2Id+"2").show()
	$('#'+menu2Id).attr('class', 'subSelected')
}
