// JavaScript Document
var visitado = 'no';

function moveinStart(id){
	//id = 1;
	start = id;
	//movein(id);
	//menuActivo(id);
}

function move(id) {
	if (document.getElementById('g'+id).className == 'menu') {
		document.getElementById('g'+id).className = 'menuActivo';
	} else {
		if (document.getElementById('s'+id).className == 'menuInv') {
			document.getElementById('g'+id).className = 'menu';
		}
	}
}

function menuActivo(id) {
	if (top.visitado == id) {
		document.getElementById('s'+id).className = 'menuInv';
		top.visitado = 'no';
	} else {
		document.getElementById('s'+id).className = 'menuVisible';
		move(id);
		if (top.visitado != 'no' && top.visitado != start) {
			document.getElementById('s'+top.visitado).className = 'menuInv';
			move(top.visitado);
		}
		top.visitado = id;
	}
	
	/*window.open('productos.php?carpeta='+idActivo,'_self');
	moveout(old);
	
	activo = idActivo;
	old = idActivo;*/
}
function menuNavegar(g, s) {	
	window.open('productos.php?g='+g+'&s='+s,'_self');
}
function menuBackEndNavegar(g, s) {	
	window.open('lista.php?g='+g+'&s='+s,'_self');
}

function moveSub(id) {
	if (document.getElementById('sub'+id).className != 'subOver') {
		document.getElementById('sub'+id).className = 'subOver';
	} else {
		document.getElementById('sub'+id).className = '';
	}
}
