	<!--
function scroll_status (seed)
{
        var msg = "I Bellissimi.com    by Suntek2  - trattamenti cosmetici , medico - chirurgici";
        var out = " ";
        var c   = 1;
        if (150 < seed) {
                seed--;
                var cmd="scroll_status(" + seed + ")";
                timerTwo=window.setTimeout(cmd,100);
        }
        else if (seed <= 150 && 0 < seed) {
                for (c=0 ; c < seed ; c++) {
                        out+=" ";
                }
                out+=msg;
                seed--;
                var cmd="scroll_status(" + seed + ")";
                window.status=out;
                timerTwo=window.setTimeout(cmd,100);
        }
        else if (seed <= 0) {
                if (-seed < msg.length) {
                        out+=msg.substring(-seed,msg.length);
                        seed--;
                        var cmd="scroll_status(" + seed + ")";
                        window.status=out;
                        timerTwo=window.setTimeout(cmd,100);
                }
                else {
                       window.status=" ";
                       timerTwo=window.setTimeout("scroll_status(150)",100);
                }
        }
}

// -- End of JavaScript code -------------- 

