function	cambiaSub(obj)	{
	if	(document.getElementById)	{
		navRoot = document.getElementById("objMenu");
		for 	(i=0; i<navRoot.childNodes.length; i++)	{ 
				node = navRoot.childNodes[i];
			if (node.nodeName=="DIV" || node.nodeName=="div") {
				node.className=node.className.replace(" actual", "");
				}
			}
		}	
obj.className+=" actual";}