/*proyectos_hover*/

function hover_proyecto(objeto) {
	if(objeto.style.backgroundImage == "url(/imagenes/nav/fondo_thumbs_proyectos.gif)" || objeto.style.backgroundImage == "") {
		objeto.style.backgroundImage = "url(/imagenes/nav/fondo_thumbs_proyectos_o.gif)";
		if (objeto.parentNode.childNodes[0].nodeType!=1) {
			objeto.parentNode.childNodes[3].style.backgroundColor = "#E9E9E9";
		}
		else {
			objeto.parentNode.childNodes[1].style.backgroundColor = "#E9E9E9";
		}
	}
	else {
		objeto.style.backgroundImage = "url(/imagenes/nav/fondo_thumbs_proyectos.gif)";
		if (objeto.parentNode.childNodes[0].nodeType!=1) {
			objeto.parentNode.childNodes[3].style.backgroundColor = "";
		}
		else {
			objeto.parentNode.childNodes[1].style.backgroundColor = "";
		}
	}
}