var HomeController = {
    
    iMinHeight: null,
    iFooterHeight: null,
    bIsIE6: false,
    
    init: function() {
        
        // Set flash or 'no-flash' class
        
        if (swfobject.hasFlashPlayerVersion("9.0.0")) {

            var flashvars = {data:"imageshome.xml"};
            var params = {allowscriptaccess:"sameDomain", wmode:"opaque"};
            var att = {id:"home-flash"};

            swfobject.embedSWF("swf/slidehome.swf", "home-flash", "100%", "100%", "9.0.0", null, flashvars, params, att);

       }      
    },
    
    /**
     * Handle window resize, fake min-height
     */
    resize: function() {
        var iHeight = window.getHeight().toInt() - HomeController.iFooterHeight;
        var sHeight = (iHeight <= this.iMinHeight) ? this.iMinHeight : iHeight;
        $('content').setStyle('height', sHeight + 'px');
    }
    
};

HomeController.init();
