﻿// JScript File code by blackyaa
var _o = document.getElementById("slg");
var max=0;
function textlist(o)
{
    max=o.length; for (i=0; i<max; i++) this[i]=o[i];
}
var tl=new textlist(_slogan);
var x=0; pos=0;
var l=tl[0].length;
function textticker()
{
    _o.innerHTML=tl[x].substring(0,pos)+"_";
    if(pos++==l)
    {
        pos=0;
        setTimeout("textticker()",2500);
        x++;
        if(x==max)
            x=0;
        l=tl[x].length;
    } else
        setTimeout("textticker()",50);
}
//Start
textticker();

