/**
 * Homepage JS
 */
var PageHome = {
    
    init: function() {
        swfobject.embedSWF(
            "/_swf/homefeatures.swf", 
            "home-featureflash", 
            "980", "413", 
            "9.0.0", 
            null, 
            {"data":"/home/slideshow?"+(new Date()).getTime()}, 
            {"allowFullScreen": "true", "wmode": "opaque", "bgcolor": "#000000"}
        );
    },
    
    init_load: function() {
        brightcove.createExperiences();
    }
    
};

$(document).ready(function() {
    PageHome.init();
});

$(document).load(function() {
    PageHome.init_load();
});