function ArticleList(){}


ArticleList.Call = function(tag, pos, fieldName) {
    JSTweener.addTween(tag.style, {time: 1,transition: 'easeOutCirc',top: pos, suffix:{top: 'px'}}); 
    ArticleList.ChangeClass(fieldName);
}


ArticleList.ChangeClass = function(fieldName)
{
    if(fieldName != undefined)
    { 
        var prefixI =  fieldName.indexOf('Goto')
        var prefix = fieldName.substring(0,prefixI)
        for (i=1;i<=5;i++)
        {
            var gotoObj = document.getElementById(prefix + 'Goto' + i);
            if(gotoObj != null)
                gotoObj.className = "al_goto";
         }
        var myField = document.getElementById(fieldName);
        myField.className = "al_gotoSel";
    }
}
