var msgArray = new Array
("<font color=#B22222><b>Brad W. Foster</b></font>....",
"...the <b>man</b>.....",
"...the <b>artist</b>...",
"...the <b>enigma</b>...",
"...the boundless, limitless, clueless <font color=#B22222> <b><i>ego-maniac!</i></b></font>");
var speed = 30;
var cdel = 1000;
var maxfont = 30;
// Expanding and shrinking text banner Javascript
// copyright 24th July 2005, by Stephen Chapman http://javascript.about.com
var x = y = 0;var msg;function start() {bnr('1');}
function bnr(dir){if (dir) {msg = msgArray[y];if (x < maxfont) {x++;setTimeout("bnr(1)",speed);}else setTimeout("bnr(0)",cdel);} else {if (x > 1) {x--;setTimeout("bnr(0)",speed);}else {setTimeout("bnr(1)",10);y++;if (y>=msgArray.length) y=0;}}document.getElementById('btx').innerHTML = msg;btx.style.fontSize=x+'px'}
window.onload = start;
                  
