//Mostrar botón ir a tienda del menú principal

function irTienda (estado) {
	var btnMenu_completo = document.getElementById('menu_w');
	var btnTienda = document.getElementById('btnirTienda');
		if (estado == 1) {
			btnTienda.style.display = 'block';
			btnMenu_completo.id = 'menu_w';
			 
		} else {
			btnTienda.style.display = 'none';
			btnMenu_completo.id = 'menu_walt';
			
		}
	
}
	
