
var speed=5

function movedown()
{
	if (parseInt(crossobj.style.top)>=(contentheight*(-1)+100))
	{
		crossobj.style.top=parseInt(crossobj.style.top)-speed+"px";
	}
}

function moveup(){
if (iens6&&parseInt(crossobj.style.top)<=0)
crossobj.style.top=parseInt(crossobj.style.top)+speed+"px"
else if (ns4&&crossobj.top<=0)
crossobj.top+=speed
moveupvar=setTimeout("moveup()",20)

}

function getcontent_height()
{
contentheight=crossobj.offsetHeight;
}

var crossobj=document.getElementById("testo");
var contentheight=crossobj.offsetHeight;

window.onload=getcontent_height;


function mostra_cerca()
{
	document.getElementById('fumetto_area_utenti').style.visibility = 'hidden';
	document.getElementById('fumetto_cerca').style.visibility = 'visible';
	document.getElementById('campo_ricerca').focus();
}

function mostra_area_utenti()
{
	document.getElementById('fumetto_cerca').style.visibility = 'hidden';
	document.getElementById('fumetto_area_utenti').style.visibility = 'visible';
	//document.getElementById('campo_ricerca').focus();
}

function nascondi_fumetti()
{
	document.getElementById('fumetto_cerca').style.visibility = 'hidden';
	document.getElementById('fumetto_area_utenti').style.visibility = 'hidden';
}



function cambia_settore(id, nome)
{
	//document.getElementById('img_settori').src = 'amministrazione/moduli/Gestione/immagini/' + id + '_banner.jpg';
	//document.getElementById('scritta_settori').innerHTML = nome;
}


