/*Menú vertical cambio clase*/

function cambia_clase(id_seleccionado)
{

/*	document.getElementById('link_1').className="enlace";
	document.getElementById('synopsis').className="enlace";
	document.getElementById('link_3').className="enlace";
	document.getElementById('link_4').className="enlace";
	document.getElementById(id_seleccionado).className="seleccionado";
	document.getElementById(id_seleccionado).blur();
*/
	parent.leftFrame.document.getElementById('ficha').className="enlace";
	parent.leftFrame.document.getElementById('synopsis').className="enlace";
	parent.leftFrame.document.getElementById('filmografia').className="enlace";
	parent.leftFrame.document.getElementById('trailer').className="enlace";
/*	parent.leftFrame.document.getElementById('materiales').className="enlace";*/
	parent.leftFrame.document.getElementById(id_seleccionado).className="seleccionado";
	parent.leftFrame.document.getElementById(id_seleccionado).blur();
}


/*Menú desplegable horizontal*/

startList = function() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("nav");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}
	}
}

/*inner menu superior

var contentMenu="<ul id='nav'><li><img src='ar/bot_movies.gif'><ul><li><a href='' class='enlace2'>&nbsp;La&nbsp;Cicatriz&nbsp;</a></li><br><li><a href='' class='enlace2'>&nbsp;La&nbsp;espalda&nbsp;de&nbsp;Dios&nbsp;</a></li><br><li><a href=''class='enlace2'>&nbsp;Todas&nbsp;Hieren&nbsp;</a></li><br><li><a href='' class='enlace2'>&nbsp;Jardines&nbsp;Colgantes&nbsp;</a></li><br><li><a href='' class='enlace2'>&nbsp;Venecias&nbsp;</a></li><br><li><a href='#' class='nada'>&middot;&middot;&middot;&middot;&middot;&middot;&middot;&middot;&middot;&middot;&middot;&middot;&middot;&middot;</a></li><br><li><a href='#' class='enlace2'>&nbsp;Cortometrajes&nbsp;</a></li><br></ul></li><li><img src='ar/bot_noticias.gif'></li><li><img src='ar/bot_contacto.gif'></li></ul>";

function menuSup(){
document.getElementById('menuHorizontal').innerHTML=contentMenu;
}
*/