var titolo="V I V A I O . . A U T O R E  - - -  cactus and succulent - - - www.vivaioautore.com - - - ";
var veloc=220;
function ScrollTitolo() {
        document.title=titolo;
        titolo=titolo.substring(1,titolo.length)+titolo.charAt(0);
        setTimeout("ScrollTitolo()",veloc);
}
ScrollTitolo();


