Я бы сделал объектом:
function brus(i) {
var style = {
16: 'left: 763px; bottom: 0',
17: 'left: 0; bottom: 100px',
// и т.д.
}
//br[i].style.cssText = style[i];
console.log('br['+i+'].style.cssText = ' + style[i]);
}
function timer(n) {
brus(n);
if( n < 17 ) setTimeout('timer('+(n+1)+')', 400);
}
timer(16)