//mostra/nascondi il sottomenu uomo e donna
window.lista = ["uomo", "donna"];
function HideContent(d)
{
	//alert("d = " + d);
	window["sopra_" + d] = false;
	setTimeout
	(
		function()
		{
			if(d.length < 1)
				return;
			if (window["sopra_" + d])
				return;

			//document.getElementById(d).style.display = "none";
			$("#" + d).fadeOut("fast");
		}
		, 350
	);
}
function ShowContent(d)
{
	
	for (var i = 0; i < window.lista.length; i++)
		if (window.lista[i] != d)
			$("#" + window.lista[i]).fadeOut(200);

	if(d.length < 1)
		return;
	document.getElementById(d).style.display = "block";
	window["sopra_" + d] = true;
}
//stampa il codice associato alla foto
function print_codice(idx)
{
	var codice = document.getElementById("codice");
	//var text = document.createTextNode(codiceList[idx]);
	codice.innerHTML = codiceList[idx];
	//codice.appendChild(text);
}
function imageClicked(idx)
{
	print_codice(idx);
	goto_slide(idx);
}
