function desplegar(opcion)
{
	opcion.style.display="";
}

function esconder(opcion)
{
	opcion.style.display="none";
}

function clickenmenu(opcion,src)
{
	if(opcion.style.display=="none")
	{
		desplegar(opcion);
		src.style.fontWeight="bold";
	}
	else
	{
		esconder(opcion);
		src.style.fontWeight="normal";
	}
}

function mouse_in(src, color)
{
	src.style.cursor='hand';
	src.style.backgroundColor=color;
}

function mouse_out(src, color)
{
	src.style.cursor='default';
	src.style.backgroundColor=color;
}
function errorLoadImages()
{
window.event.srcElement.style.display = "None";
}