/**
    Main JS driver for home page.
*/

/**
    Configure UFO to inject the Flash player on load.
    see: http://www.bobbyvandersluis.com/ufo/
*/
var FO = {
    'movie':        'BofASmallBiz.swf',
    'width':        '755',
    'height':       '595',
    'wmode':        'opaque',
    'majorversion': '8',
    'build':        '0',
    'xi':           'false', // 'true', Enable Flash Express Install?
    'flashvars':    'filepath=&xmlpath=xml/BofASmallBusiness.xml&playmode=online',

    'EOF':null
}
// This needs to happen outside init().
UFO.create(FO, 'BofASmallBiz');

/**
    Initialization to fire on page load.
*/
function init() {
    // This space left unintentionally blank.
}
addLoadEvent(init);
