var delay=2000
var scrollwidth="200px"
var scrollheight="75px"

var contatoreFL=-1;

var hoffset=-10


function animatein(){
if (parseInt(crossobj.style.left)<0)
crossobj.style.left=parseInt(crossobj.style.left)+20+"px"
else{
crossobj.style.left=0+"px"
crossobj.style.fontStyle="normal"
clearInterval(start);
initialize();
}
}

function initialize(){
contatoreFL=contatoreFL+1;;
var nome="flyin" + contatoreFL;
if (!document.getElementById(nome))
	return true;
crossobj= document.getElementById(nome);
crossobj.style.left="-1200px"
start=setInterval("animatein()",50)
}

