Changeset 1845


Ignore:
Timestamp:
06/14/11 13:29:22 (2 years ago)
Author:
pablo
Message:
  • Adds an alias for "autoplay" to "autostart".
  • Allows chaining for component getPlugin calls
Location:
trunk/fl5
Files:
14 edited

Legend:

Unmodified
Added
Removed
  • trunk/fl5/js/bin-debug/jwplayer.js

    r1843 r1845  
    1919var $jw = jwplayer; 
    2020 
    21 jwplayer.version = '5.7.1843'; 
     21jwplayer.version = '5.7.1845'; 
    2222 
    2323// "Shiv" method for older IE browsers; required for parsing media tags 
     
    20632063                        /** First pass to create the plugins and add listeners **/ 
    20642064                        for (var plugin in config) { 
    2065                                 _plugins[plugin] = model.addPlugin(plugin); 
    2066                                 _plugins[plugin].addEventListener(jwplayer.events.COMPLETE, _checkComplete); 
    2067                                 _plugins[plugin].addEventListener(jwplayer.events.ERROR, _checkComplete); 
     2065                                if (jwplayer.utils.exists(plugin)) { 
     2066                                        _plugins[plugin] = model.addPlugin(plugin); 
     2067                                        _plugins[plugin].addEventListener(jwplayer.events.COMPLETE, _checkComplete); 
     2068                                        _plugins[plugin].addEventListener(jwplayer.events.ERROR, _checkComplete); 
     2069                                } 
    20682070                        } 
    20692071                         
    20702072                        /** Second pass to actually load the plugins **/ 
    2071                         for (plugin in config) { 
     2073                        for (plugin in _plugins) { 
    20722074                                // Plugin object ensures that it's only loaded once 
    20732075                                _plugins[plugin].load(); 
     
    20922094/** 
    20932095 * API for the JW Player 
     2096 *  
    20942097 * @author Pablo 
    20952098 * @version 5.7 
     
    21232126                }; 
    21242127                 
    2125                 function _setButton(ref) { 
     2128                function _setButton(ref, plugin) { 
    21262129                        return function(id, handler, outGraphic, overGraphic) { 
    21272130                                var handlerString; 
     
    21332136                                } 
    21342137                                _player['jwDockSetButton'](id, handlerString, outGraphic, overGraphic); 
    2135                                 return ref; 
     2138                                return plugin; 
    21362139                        }; 
    21372140                } 
     
    21392142                this.getPlugin = function(pluginName) { 
    21402143                        var _this = this; 
     2144                        var _plugin = {}; 
    21412145                        if (pluginName == "dock") { 
    2142                                 return { 
    2143                                         setButton: _setButton(_this), 
    2144                                         show: function() { _this.callInternal('jwShowDock'); }, 
    2145                                         hide: function() {  
    2146                                                 _this.callInternal('jwHideDock');  
     2146                                return jwplayer.utils.extend(_plugin, { 
     2147                                        setButton: _setButton(_this, _plugin), 
     2148                                        show: function() { _this.callInternal('jwDockShow'); return _plugin; }, 
     2149                                        hide: function() { _this.callInternal('jwDockHide'); return _plugin; }, 
     2150                                        onShow: function(callback) {  
     2151                                                _this.componentListener("dock", jwplayer.api.events.JWPLAYER_COMPONENT_SHOW, callback);  
     2152                                                return _plugin;  
    21472153                                        }, 
    2148                                         onShow: function(callback) { _this.componentListener("dock", jwplayer.api.events.JWPLAYER_COMPONENT_SHOW, callback); }, 
    2149                                         onHide: function(callback) { _this.componentListener("dock", jwplayer.api.events.JWPLAYER_COMPONENT_HIDE, callback); } 
    2150                                 }; 
     2154                                        onHide: function(callback) {  
     2155                                                _this.componentListener("dock", jwplayer.api.events.JWPLAYER_COMPONENT_HIDE, callback);  
     2156                                                return _plugin;  
     2157                                        } 
     2158                                }); 
    21512159                        } else if (pluginName == "controlbar") { 
    2152                                 return { 
    2153                                         show: function() { _this.callInternal('jwShowControlbar'); }, 
    2154                                         hide: function() { _this.callInternal('jwHideControlbar'); }, 
    2155                                         onShow: function(callback) { _this.componentListener("controlbar", jwplayer.api.events.JWPLAYER_COMPONENT_SHOW, callback); }, 
    2156                                         onHide: function(callback) { _this.componentListener("controlbar", jwplayer.api.events.JWPLAYER_COMPONENT_HIDE, callback); } 
    2157                                 } 
     2160                                return jwplayer.utils.extend(_plugin, { 
     2161                                        show: function() { _this.callInternal('jwControlbarShow'); return _plugin; }, 
     2162                                        hide: function() { _this.callInternal('jwControlbarHide'); return _plugin; }, 
     2163                                        onShow: function(callback) {  
     2164                                                _this.componentListener("controlbar", jwplayer.api.events.JWPLAYER_COMPONENT_SHOW, callback);  
     2165                                                return _plugin;  
     2166                                        }, 
     2167                                        onHide: function(callback) {  
     2168                                                _this.componentListener("controlbar", jwplayer.api.events.JWPLAYER_COMPONENT_HIDE, callback);  
     2169                                                return _plugin;  
     2170                                        } 
     2171                                }); 
    21582172                        } else if (pluginName == "display") { 
    2159                                 return { 
    2160                                         show: function() { _this.callInternal('jwShowDisplay'); }, 
    2161                                         hide: function() { _this.callInternal('jwHideDisplay'); }, 
    2162                                         onShow: function(callback) { _this.componentListener("display", jwplayer.api.events.JWPLAYER_COMPONENT_SHOW, callback); }, 
    2163                                         onHide: function(callback) { _this.componentListener("display", jwplayer.api.events.JWPLAYER_COMPONENT_HIDE, callback); } 
    2164                                 } 
    2165                         } 
    2166                         return this.plugins[pluginName]; 
     2173                                return jwplayer.utils.extend(_plugin, { 
     2174                                        show: function() { _this.callInternal('jwDisplayShow'); return _plugin; }, 
     2175                                        hide: function() { _this.callInternal('jwDisplayHide'); return _plugin; }, 
     2176                                        onShow: function(callback) {  
     2177                                                _this.componentListener("display", jwplayer.api.events.JWPLAYER_COMPONENT_SHOW, callback);  
     2178                                                return _plugin;  
     2179                                        }, 
     2180                                        onHide: function(callback) {  
     2181                                                _this.componentListener("display", jwplayer.api.events.JWPLAYER_COMPONENT_HIDE, callback);  
     2182                                                return _plugin;  
     2183                                        } 
     2184                                }); 
     2185                        } else { 
     2186                                return this.plugins[pluginName]; 
     2187                        } 
    21672188                }; 
    21682189                 
     
    27842805 * Configuration for the JW Player Embedder 
    27852806 * @author Zach 
    2786  * @version 5.6 
     2807 * @version 5.7 
    27872808 */ 
    27882809(function(jwplayer) { 
     
    27982819        } 
    27992820         
     2821        var _aliases = { 
     2822                'players': 'modes', 
     2823                'autoplay': 'autostart' 
     2824        }; 
     2825         
    28002826        function _isPosition(string) { 
    28012827                var lower = string.toLowerCase(); 
     
    29672993                } 
    29682994                 
    2969                 if (parsedConfig.players) { 
    2970                         parsedConfig.modes = parsedConfig.players; 
    2971                         delete parsedConfig.players; 
     2995                for (var alias in _aliases) 
     2996                if (parsedConfig[alias]) { 
     2997                        if (!parsedConfig[_aliases[alias]]) { 
     2998                                parsedConfig[_aliases[alias]] = parsedConfig[alias]; 
     2999                        } 
     3000                        delete parsedConfig[alias]; 
    29723001                } 
    29733002                 
     
    44294458                                clearTimeout(_fadeTimeout); 
    44304459                                switch(_api.jwGetState()) { 
    4431                                 case jwplayer.api.events.state.PLAYING: 
    4432                                 case jwplayer.api.events.state.BUFFERING: 
    4433                                         _fadeIn(); 
     4460                                case jwplayer.api.events.state.PAUSED: 
     4461                                case jwplayer.api.events.state.IDLE: 
     4462                                        if (!_settings.idlehide || _utils.exists(evt)) { 
     4463                                                _fadeIn(); 
     4464                                        } 
     4465                                        if (_settings.idlehide) { 
     4466                                                _fadeTimeout = setTimeout(function() { 
     4467                                                        _fadeOut(); 
     4468                                                }, 2000); 
     4469                                        } 
     4470                                        break; 
     4471                                default: 
     4472                                        if (evt) { 
     4473                                                // Fade in on mouse move 
     4474                                                _fadeIn(); 
     4475                                        } 
    44344476                                        _fadeTimeout = setTimeout(function() { 
    44354477                                                _fadeOut(); 
    44364478                                        }, 2000); 
    4437                                         break; 
    4438                                 default: 
    4439                                         if (!_settings.idlehide || _utils.exists(evt)) { 
    4440                                                 _fadeIn(); 
    4441                                         } 
    4442                                         if (_settings.idlehide ) { 
    4443                                                 _fadeTimeout = setTimeout(function() { 
    4444                                                         _fadeOut(); 
    4445                                                 }, 2000); 
    4446                                         } 
    44474479                                        break; 
    44484480                                } 
     
    52775309                /** Stop playback and loading of the video. **/ 
    52785310                function _item(item) { 
     5311                        if (!_model.playlist || !_model.playlist[item]) { 
     5312                                return false; 
     5313                        } 
     5314                         
    52795315                        try { 
    52805316                                if (_model.playlist[item].levels[0].file.length > 0) { 
     
    60246060                 
    60256061                function _resize(width, height) { 
    6026                         _width = width; 
    6027                         _height = height; 
    6028                          
    60296062                        if (_buttonArray.length > 0) { 
    60306063                                var margin = 10; 
     
    60696102                        } 
    60706103                         
    6071                         if (_fullscreen != api.jwGetFullscreen()) { 
     6104                        if (_fullscreen != api.jwGetFullscreen() || _width != width || _height != height) { 
     6105                                _width = width; 
     6106                                _height = height; 
    60726107                                _fullscreen = api.jwGetFullscreen(); 
    60736108                                _lastSent = undefined; 
    6074                                 _sendShow(); 
     6109                                // Delay to allow resize event handlers to complete 
     6110                                setTimeout(_sendShow, 1); 
    60756111                        } 
    60766112                         
     
    81898225                } 
    81908226                 
    8191                 _api.jwShowControlbar = _componentCommandFactory("controlbar", "show"); 
    8192                 _api.jwHideControlbar = _componentCommandFactory("controlbar", "hide"); 
    8193                 _api.jwShowDock = _componentCommandFactory("dock", "show"); 
    8194                 _api.jwHideDock = _componentCommandFactory("dock", "hide"); 
    8195                 _api.jwShowDisplay = _componentCommandFactory("display", "show"); 
    8196                 _api.jwHideDisplay = _componentCommandFactory("display", "hide"); 
     8227                _api.jwControlbarShow = _componentCommandFactory("controlbar", "show"); 
     8228                _api.jwControlbarHide = _componentCommandFactory("controlbar", "hide"); 
     8229                _api.jwDockShow = _componentCommandFactory("dock", "show"); 
     8230                _api.jwDockHide = _componentCommandFactory("dock", "hide"); 
     8231                _api.jwDisplayShow = _componentCommandFactory("display", "show"); 
     8232                _api.jwDisplayHide = _componentCommandFactory("display", "hide"); 
    81978233                 
    81988234                //UNIMPLEMENTED 
  • trunk/fl5/js/src/api/jwplayer.api.js

    r1839 r1845  
    11/** 
    22 * API for the JW Player 
     3 *  
    34 * @author Pablo 
    45 * @version 5.7 
     
    3233                }; 
    3334                 
    34                 function _setButton(ref) { 
     35                function _setButton(ref, plugin) { 
    3536                        return function(id, handler, outGraphic, overGraphic) { 
    3637                                var handlerString; 
     
    4243                                } 
    4344                                _player['jwDockSetButton'](id, handlerString, outGraphic, overGraphic); 
    44                                 return ref; 
     45                                return plugin; 
    4546                        }; 
    4647                } 
     
    4849                this.getPlugin = function(pluginName) { 
    4950                        var _this = this; 
     51                        var _plugin = {}; 
    5052                        if (pluginName == "dock") { 
    51                                 return { 
    52                                         setButton: _setButton(_this), 
    53                                         show: function() { _this.callInternal('jwShowDock'); }, 
    54                                         hide: function() {  
    55                                                 _this.callInternal('jwHideDock');  
     53                                return jwplayer.utils.extend(_plugin, { 
     54                                        setButton: _setButton(_this, _plugin), 
     55                                        show: function() { _this.callInternal('jwDockShow'); return _plugin; }, 
     56                                        hide: function() { _this.callInternal('jwDockHide'); return _plugin; }, 
     57                                        onShow: function(callback) {  
     58                                                _this.componentListener("dock", jwplayer.api.events.JWPLAYER_COMPONENT_SHOW, callback);  
     59                                                return _plugin;  
    5660                                        }, 
    57                                         onShow: function(callback) { _this.componentListener("dock", jwplayer.api.events.JWPLAYER_COMPONENT_SHOW, callback); }, 
    58                                         onHide: function(callback) { _this.componentListener("dock", jwplayer.api.events.JWPLAYER_COMPONENT_HIDE, callback); } 
    59                                 }; 
     61                                        onHide: function(callback) {  
     62                                                _this.componentListener("dock", jwplayer.api.events.JWPLAYER_COMPONENT_HIDE, callback);  
     63                                                return _plugin;  
     64                                        } 
     65                                }); 
    6066                        } else if (pluginName == "controlbar") { 
    61                                 return { 
    62                                         show: function() { _this.callInternal('jwShowControlbar'); }, 
    63                                         hide: function() { _this.callInternal('jwHideControlbar'); }, 
    64                                         onShow: function(callback) { _this.componentListener("controlbar", jwplayer.api.events.JWPLAYER_COMPONENT_SHOW, callback); }, 
    65                                         onHide: function(callback) { _this.componentListener("controlbar", jwplayer.api.events.JWPLAYER_COMPONENT_HIDE, callback); } 
    66                                 } 
     67                                return jwplayer.utils.extend(_plugin, { 
     68                                        show: function() { _this.callInternal('jwControlbarShow'); return _plugin; }, 
     69                                        hide: function() { _this.callInternal('jwControlbarHide'); return _plugin; }, 
     70                                        onShow: function(callback) {  
     71                                                _this.componentListener("controlbar", jwplayer.api.events.JWPLAYER_COMPONENT_SHOW, callback);  
     72                                                return _plugin;  
     73                                        }, 
     74                                        onHide: function(callback) {  
     75                                                _this.componentListener("controlbar", jwplayer.api.events.JWPLAYER_COMPONENT_HIDE, callback);  
     76                                                return _plugin;  
     77                                        } 
     78                                }); 
    6779                        } else if (pluginName == "display") { 
    68                                 return { 
    69                                         show: function() { _this.callInternal('jwShowDisplay'); }, 
    70                                         hide: function() { _this.callInternal('jwHideDisplay'); }, 
    71                                         onShow: function(callback) { _this.componentListener("display", jwplayer.api.events.JWPLAYER_COMPONENT_SHOW, callback); }, 
    72                                         onHide: function(callback) { _this.componentListener("display", jwplayer.api.events.JWPLAYER_COMPONENT_HIDE, callback); } 
    73                                 } 
    74                         } 
    75                         return this.plugins[pluginName]; 
     80                                return jwplayer.utils.extend(_plugin, { 
     81                                        show: function() { _this.callInternal('jwDisplayShow'); return _plugin; }, 
     82                                        hide: function() { _this.callInternal('jwDisplayHide'); return _plugin; }, 
     83                                        onShow: function(callback) {  
     84                                                _this.componentListener("display", jwplayer.api.events.JWPLAYER_COMPONENT_SHOW, callback);  
     85                                                return _plugin;  
     86                                        }, 
     87                                        onHide: function(callback) {  
     88                                                _this.componentListener("display", jwplayer.api.events.JWPLAYER_COMPONENT_HIDE, callback);  
     89                                                return _plugin;  
     90                                        } 
     91                                }); 
     92                        } else { 
     93                                return this.plugins[pluginName]; 
     94                        } 
    7695                }; 
    7796                 
  • trunk/fl5/js/src/embed/jwplayer.embed.config.js

    r1839 r1845  
    22 * Configuration for the JW Player Embedder 
    33 * @author Zach 
    4  * @version 5.6 
     4 * @version 5.7 
    55 */ 
    66(function(jwplayer) { 
     
    1515                }]; 
    1616        } 
     17         
     18        var _aliases = { 
     19                'players': 'modes', 
     20                'autoplay': 'autostart' 
     21        }; 
    1722         
    1823        function _isPosition(string) { 
     
    185190                } 
    186191                 
    187                 if (parsedConfig.players) { 
    188                         parsedConfig.modes = parsedConfig.players; 
    189                         delete parsedConfig.players; 
     192                for (var alias in _aliases) 
     193                if (parsedConfig[alias]) { 
     194                        if (!parsedConfig[_aliases[alias]]) { 
     195                                parsedConfig[_aliases[alias]] = parsedConfig[alias]; 
     196                        } 
     197                        delete parsedConfig[alias]; 
    190198                } 
    191199                 
  • trunk/fl5/js/src/html5/jwplayer.html5.api.js

    r1833 r1845  
    105105                } 
    106106                 
    107                 _api.jwShowControlbar = _componentCommandFactory("controlbar", "show"); 
    108                 _api.jwHideControlbar = _componentCommandFactory("controlbar", "hide"); 
    109                 _api.jwShowDock = _componentCommandFactory("dock", "show"); 
    110                 _api.jwHideDock = _componentCommandFactory("dock", "hide"); 
    111                 _api.jwShowDisplay = _componentCommandFactory("display", "show"); 
    112                 _api.jwHideDisplay = _componentCommandFactory("display", "hide"); 
     107                _api.jwControlbarShow = _componentCommandFactory("controlbar", "show"); 
     108                _api.jwControlbarHide = _componentCommandFactory("controlbar", "hide"); 
     109                _api.jwDockShow = _componentCommandFactory("dock", "show"); 
     110                _api.jwDockHide = _componentCommandFactory("dock", "hide"); 
     111                _api.jwDisplayShow = _componentCommandFactory("display", "show"); 
     112                _api.jwDisplayHide = _componentCommandFactory("display", "hide"); 
    113113                 
    114114                //UNIMPLEMENTED 
  • trunk/fl5/js/src/html5/jwplayer.html5.controlbar.js

    r1843 r1845  
    239239                                clearTimeout(_fadeTimeout); 
    240240                                switch(_api.jwGetState()) { 
    241                                 case jwplayer.api.events.state.PLAYING: 
    242                                 case jwplayer.api.events.state.BUFFERING: 
    243                                         _fadeIn(); 
     241                                case jwplayer.api.events.state.PAUSED: 
     242                                case jwplayer.api.events.state.IDLE: 
     243                                        if (!_settings.idlehide || _utils.exists(evt)) { 
     244                                                _fadeIn(); 
     245                                        } 
     246                                        if (_settings.idlehide) { 
     247                                                _fadeTimeout = setTimeout(function() { 
     248                                                        _fadeOut(); 
     249                                                }, 2000); 
     250                                        } 
     251                                        break; 
     252                                default: 
     253                                        if (evt) { 
     254                                                // Fade in on mouse move 
     255                                                _fadeIn(); 
     256                                        } 
    244257                                        _fadeTimeout = setTimeout(function() { 
    245258                                                _fadeOut(); 
    246259                                        }, 2000); 
    247                                         break; 
    248                                 default: 
    249                                         if (!_settings.idlehide || _utils.exists(evt)) { 
    250                                                 _fadeIn(); 
    251                                         } 
    252                                         if (_settings.idlehide ) { 
    253                                                 _fadeTimeout = setTimeout(function() { 
    254                                                         _fadeOut(); 
    255                                                 }, 2000); 
    256                                         } 
    257260                                        break; 
    258261                                } 
  • trunk/fl5/js/src/html5/jwplayer.html5.controller.js

    r1821 r1845  
    197197                /** Stop playback and loading of the video. **/ 
    198198                function _item(item) { 
     199                        if (!_model.playlist || !_model.playlist[item]) { 
     200                                return false; 
     201                        } 
     202                         
    199203                        try { 
    200204                                if (_model.playlist[item].levels[0].file.length > 0) { 
  • trunk/fl5/js/src/html5/jwplayer.html5.dock.js

    r1839 r1845  
    120120                 
    121121                function _resize(width, height) { 
    122                         _width = width; 
    123                         _height = height; 
    124                          
    125122                        if (_buttonArray.length > 0) { 
    126123                                var margin = 10; 
     
    165162                        } 
    166163                         
    167                         if (_fullscreen != api.jwGetFullscreen()) { 
     164                        if (_fullscreen != api.jwGetFullscreen() || _width != width || _height != height) { 
     165                                _width = width; 
     166                                _height = height; 
    168167                                _fullscreen = api.jwGetFullscreen(); 
    169168                                _lastSent = undefined; 
    170                                 _sendShow(); 
     169                                // Delay to allow resize event handlers to complete 
     170                                setTimeout(_sendShow, 1); 
    171171                        } 
    172172                         
  • trunk/fl5/js/src/jwplayer.js

    r1843 r1845  
    1111var $jw = jwplayer; 
    1212 
    13 jwplayer.version = '5.7.1843'; 
     13jwplayer.version = '5.7.1845'; 
    1414 
    1515// "Shiv" method for older IE browsers; required for parsing media tags 
  • trunk/fl5/js/src/plugins/jwplayer.plugins.pluginloader.js

    r1704 r1845  
    9494                        /** First pass to create the plugins and add listeners **/ 
    9595                        for (var plugin in config) { 
    96                                 _plugins[plugin] = model.addPlugin(plugin); 
    97                                 _plugins[plugin].addEventListener(jwplayer.events.COMPLETE, _checkComplete); 
    98                                 _plugins[plugin].addEventListener(jwplayer.events.ERROR, _checkComplete); 
     96                                if (jwplayer.utils.exists(plugin)) { 
     97                                        _plugins[plugin] = model.addPlugin(plugin); 
     98                                        _plugins[plugin].addEventListener(jwplayer.events.COMPLETE, _checkComplete); 
     99                                        _plugins[plugin].addEventListener(jwplayer.events.ERROR, _checkComplete); 
     100                                } 
    99101                        } 
    100102                         
    101103                        /** Second pass to actually load the plugins **/ 
    102                         for (plugin in config) { 
     104                        for (plugin in _plugins) { 
    103105                                // Plugin object ensures that it's only loaded once 
    104106                                _plugins[plugin].load(); 
  • trunk/fl5/js/test/examples/showhide.html

    r1843 r1845  
    66        </script> 
    77        <script type="text/javascript" src="settings.js"></script> 
     8        <style type="text/css"> 
     9          form{ 
     10            width:400px; 
     11          } 
     12          label { 
     13            display:block; 
     14            font-weight:bold; 
     15            text-align:right; 
     16            width:180px; 
     17            float:left; 
     18          } 
     19          select { 
     20            float:left; 
     21            font-size:12px; 
     22            padding:4px 2px; 
     23            width:200px; 
     24            margin:2px 0 3px 3px; 
     25          } 
     26        </style> 
    827    </head> 
    928    <body> 
     
    1332             
    1433        <p> 
    15             This shows all of the rendering options for the playlist component. 
     34            This page demonstrates the show / hide events for the following components: 
     35            <ul><li>controlbar</li><li>dock</li><li>display</li></ul> 
    1636        </p> 
    1737         
    18         <p> 
    19           Select a rendering mode:  
     38        <form onsubmit="return false"> 
     39          <label>Select a rendering mode:</label> 
    2040          <select id="renderer"> 
    2141            <option value="flashonly">Flash Only</option> 
    2242            <option value="html5only" selected="selected">HTML5 Only</option> 
    23           </select><br/> 
    24           controlbar.idlehide:  
     43          </select> 
     44          <label>controlbar.idlehide:</label> 
    2545          <select id="idlehide"> 
    2646            <option value="true">True</option> 
    2747            <option value="false" selected="selected">False</option> 
    28           </select><br/> 
    29           display.icons:  
     48          </select> 
     49          <label>display.icons:</label> 
    3050          <select id="icons"> 
    3151            <option value="true" selected="selected">True</option> 
    3252            <option value="false" >False</option> 
    3353          </select><br/> 
    34           skin: 
     54          <label>skin:</label> 
    3555          <select id="skin"> 
    3656            <option value="" selected="selected">None</option> 
    3757            <option value="testskin/testskin.zip" >Test Skin</option> 
     58          </select><br/> 
     59          <label>plugins:</label> 
     60          <select id="plugins"> 
     61            <option value="" selected="selected">None</option> 
     62            <option value="plugins/dockplugin.js" >Test Dock Plugin</option> 
    3863          </select> 
    3964          <button id="go" onclick="setupAll()">Go</button> 
    40         </p> 
     65        </form> 
    4166         
    4267        <div> 
     
    4873            <span id="player1_output" style="overflow: auto; width: 400px; display:block; height: 290px; border:1px solid black; padding:5px;"></span> 
    4974          </div> 
     75          <div id="player1_toggles"></div> 
    5076        </div>         
    5177 
    5278        <script type="text/javascript"> 
     79          var showing = { 
     80            controlbar: true, 
     81            display: true, 
     82            dock: true 
     83          } 
     84         
    5385          function setupAll() { 
    5486            var mode = document.getElementById('renderer').value; 
     
    5890            var icons = document.getElementById('icons').value; 
    5991            var skin = document.getElementById('skin').value; 
     92            var plugins = document.getElementById('plugins').value; 
    6093 
    6194            var idx = 1; 
     
    67100                        "controlbar.idlehide": idlehide, 
    68101                        "display.icons": icons, 
    69                         skin: skin 
     102                        skin: skin, 
     103                        plugins: plugins 
    70104            }); 
    71  
    72              
    73105          } 
    74106           
     
    79111            output.innerHTML = ""; 
    80112             
     113            var toggles = document.getElementById(id + "_toggles"); 
     114            toggles.innerHTML = "<a href='#' onclick='toggle(\""+id+"\",\"controlbar\"); return false;'>Toggle Controlbar</a> "; 
     115            toggles.innerHTML += "<a href='#' onclick='toggle(\""+id+"\",\"display\"); return false;'>Toggle Display Icons</a> "; 
     116            toggles.innerHTML += "<a href='#' onclick='toggle(\""+id+"\",\"dock\"); return false;'>Toggle Dock</a> "; 
     117 
    81118            jwplayer(id).getPlugin("controlbar").onShow(function(evt) { 
    82119              output.innerHTML += "Controlbar showing at " + dims(evt.boundingRect) + "<br/>"; 
     
    105142          } 
    106143           
     144          function toggle(id, component) { 
     145            var comp = jwplayer(id).getPlugin(component); 
     146            showing[component] ? comp.hide() : comp.show(); 
     147            showing[component] = !showing[component]; 
     148          } 
     149           
    107150          function dims(rect) { 
    108151            return "(" + rect.x + "," + rect.y + "), " + rect.width + "x" + rect.height; 
  • trunk/fl5/jwplayer.min.js

    r1843 r1845  
    1 if(typeof jwplayer=="undefined"){var jwplayer=function(a){if(jwplayer.api){return jwplayer.api.selectPlayer(a)}};var $jw=jwplayer;jwplayer.version="5.7.1843";jwplayer.vid=document.createElement("video");jwplayer.audio=document.createElement("audio");jwplayer.source=document.createElement("source");(function(b){b.utils=function(){};b.utils.typeOf=function(d){var c=typeof d;if(c==="object"){if(d){if(d instanceof Array){c="array"}}else{c="null"}}return c};b.utils.extend=function(){var c=b.utils.extend["arguments"];if(c.length>1){for(var e=1;e<c.length;e++){for(var d in c[e]){c[0][d]=c[e][d]}}return c[0]}return null};b.utils.clone=function(f){var c;var d=b.utils.clone["arguments"];if(d.length==1){switch(b.utils.typeOf(d[0])){case"object":c={};for(var e in d[0]){c[e]=b.utils.clone(d[0][e])}break;case"array":c=[];for(var e in d[0]){c[e]=b.utils.clone(d[0][e])}break;default:return d[0];break}}return c};b.utils.extension=function(c){if(!c){return""}c=c.substring(c.lastIndexOf("/")+1,c.length);c=c.split("?")[0];if(c.lastIndexOf(".")>-1){return c.substr(c.lastIndexOf(".")+1,c.length).toLowerCase()}return};b.utils.html=function(c,d){c.innerHTML=d};b.utils.wrap=function(c,d){if(c.parentNode){c.parentNode.replaceChild(d,c)}d.appendChild(c)};b.utils.ajax=function(g,f,c){var e;if(window.XMLHttpRequest){e=new XMLHttpRequest()}else{e=new ActiveXObject("Microsoft.XMLHTTP")}e.onreadystatechange=function(){if(e.readyState===4){if(e.status===200){if(f){f(e)}}else{if(c){c(g)}}}};try{e.open("GET",g,true);e.send(null)}catch(d){if(c){c(g)}}return e};b.utils.load=function(d,e,c){d.onreadystatechange=function(){if(d.readyState===4){if(d.status===200){if(e){e()}}else{if(c){c()}}}}};b.utils.find=function(d,c){return d.getElementsByTagName(c)};b.utils.append=function(c,d){c.appendChild(d)};b.utils.isIE=function(){return((!+"\v1")||(typeof window.ActiveXObject!="undefined"))};b.utils.isLegacyAndroid=function(){var c=navigator.userAgent.toLowerCase();return(c.match(/android 2.[012]/i)!==null)};b.utils.isIOS=function(d){if(typeof d=="undefined"){d=/iP(hone|ad|od)/i}var c=navigator.userAgent.toLowerCase();return(c.match(d)!==null)};b.utils.isIPad=function(){return b.utils.isIOS(/iPad/i)};b.utils.isIPod=function(){return b.utils.isIOS(/iP(hone|od)/i)};b.utils.getFirstPlaylistItemFromConfig=function(c){var d={};var e;if(c.playlist&&c.playlist.length){e=c.playlist[0]}else{e=c}d.file=e.file;d.levels=e.levels;d.streamer=e.streamer;d.playlistfile=e.playlistfile;d.provider=e.provider;if(!d.provider){if(d.file&&(d.file.toLowerCase().indexOf("youtube.com")>-1||d.file.toLowerCase().indexOf("youtu.be")>-1)){d.provider="youtube"}if(d.streamer&&d.streamer.toLowerCase().indexOf("rtmp://")==0){d.provider="rtmp"}if(e.type){d.provider=e.type.toLowerCase()}}if(d.provider=="audio"){d.provider="sound"}return d};b.utils.getOuterHTML=function(c){if(c.outerHTML){return c.outerHTML}else{try{return new XMLSerializer().serializeToString(c)}catch(d){return""}}};b.utils.setOuterHTML=function(f,e){if(f.outerHTML){f.outerHTML=e}else{var g=document.createElement("div");g.innerHTML=e;var c=document.createRange();c.selectNodeContents(g);var d=c.extractContents();f.parentNode.insertBefore(d,f);f.parentNode.removeChild(f)}};b.utils.hasFlash=function(){if(typeof navigator.plugins!="undefined"&&typeof navigator.plugins["Shockwave Flash"]!="undefined"){return true}if(typeof window.ActiveXObject!="undefined"){try{new ActiveXObject("ShockwaveFlash.ShockwaveFlash");return true}catch(c){}}return false};b.utils.getPluginName=function(c){if(c.lastIndexOf("/")>=0){c=c.substring(c.lastIndexOf("/")+1,c.length)}if(c.lastIndexOf("-")>=0){c=c.substring(0,c.lastIndexOf("-"))}if(c.lastIndexOf(".swf")>=0){c=c.substring(0,c.lastIndexOf(".swf"))}if(c.lastIndexOf(".js")>=0){c=c.substring(0,c.lastIndexOf(".js"))}return c};b.utils.getPluginVersion=function(c){if(c.lastIndexOf("-")>=0){if(c.lastIndexOf(".js")>=0){return c.substring(c.lastIndexOf("-")+1,c.lastIndexOf(".js"))}else{if(c.lastIndexOf(".swf")>=0){return c.substring(c.lastIndexOf("-")+1,c.lastIndexOf(".swf"))}else{return c.substring(c.lastIndexOf("-")+1)}}}return""};b.utils.getAbsolutePath=function(j,h){if(!b.utils.exists(h)){h=document.location.href}if(!b.utils.exists(j)){return undefined}if(a(j)){return j}var k=h.substring(0,h.indexOf("://")+3);var g=h.substring(k.length,h.indexOf("/",k.length+1));var d;if(j.indexOf("/")===0){d=j.split("/")}else{var e=h.split("?")[0];e=e.substring(k.length+g.length+1,e.lastIndexOf("/"));d=e.split("/").concat(j.split("/"))}var c=[];for(var f=0;f<d.length;f++){if(!d[f]||!b.utils.exists(d[f])||d[f]=="."){continue}else{if(d[f]==".."){c.pop()}else{c.push(d[f])}}}return k+g+"/"+c.join("/")};function a(d){if(!b.utils.exists(d)){return}var e=d.indexOf("://");var c=d.indexOf("?");return(e>0&&(c<0||(c>e)))}b.utils.pluginPathType={ABSOLUTE:"ABSOLUTE",RELATIVE:"RELATIVE",CDN:"CDN"};b.utils.getPluginPathType=function(d){if(typeof d!="string"){return}d=d.split("?")[0];var e=d.indexOf("://");if(e>0){return b.utils.pluginPathType.ABSOLUTE}var c=d.indexOf("/");var f=b.utils.extension(d);if(e<0&&c<0&&(!f||!isNaN(f))){return b.utils.pluginPathType.CDN}return b.utils.pluginPathType.RELATIVE};b.utils.mapEmpty=function(c){for(var d in c){return false}return true};b.utils.mapLength=function(d){var c=0;for(var e in d){c++}return c};b.utils.log=function(d,c){if(typeof console!="undefined"&&typeof console.log!="undefined"){if(c){console.log(d,c)}else{console.log(d)}}};b.utils.css=function(d,g,c){if(b.utils.exists(d)){for(var e in g){try{if(typeof g[e]==="undefined"){continue}else{if(typeof g[e]=="number"&&!(e=="zIndex"||e=="opacity")){if(isNaN(g[e])){continue}if(e.match(/color/i)){g[e]="#"+b.utils.strings.pad(g[e].toString(16),6)}else{g[e]=Math.ceil(g[e])+"px"}}}d.style[e]=g[e]}catch(f){}}}};b.utils.isYouTube=function(c){return(c.indexOf("youtube.com")>-1||c.indexOf("youtu.be")>-1)};b.utils.transform=function(c,d){c.style.webkitTransform=d;c.style.MozTransform=d;c.style.OTransform=d};b.utils.stretch=function(h,m,l,f,k,g){if(typeof l=="undefined"||typeof f=="undefined"||typeof k=="undefined"||typeof g=="undefined"){return}var d=l/k;var e=f/g;var j=0;var i=0;m.style.overflow="hidden";b.utils.transform(m,"");var c={};switch(h.toUpperCase()){case b.utils.stretching.NONE:c.width=k;c.height=g;break;case b.utils.stretching.UNIFORM:if(d>e){c.width=k*e;c.height=g*e}else{c.width=k*d;c.height=g*d}break;case b.utils.stretching.FILL:if(d>e){c.width=k*d;c.height=g*d}else{c.width=k*e;c.height=g*e}break;case b.utils.stretching.EXACTFIT:b.utils.transform(m,["scale(",d,",",e,")"," translate(0px,0px)"].join(""));c.width=k;c.height=g;break;default:break}c.top=(f-c.height)/2;c.left=(l-c.width)/2;b.utils.css(m,c)};b.utils.stretching={NONE:"NONE",FILL:"FILL",UNIFORM:"UNIFORM",EXACTFIT:"EXACTFIT"};b.utils.deepReplaceKeyName=function(h,e,c){switch(b.utils.typeOf(h)){case"array":for(var g=0;g<h.length;g++){h[g]=b.utils.deepReplaceKeyName(h[g],e,c)}break;case"object":for(var f in h){var d=f.replace(new RegExp(e,"g"),c);h[d]=b.utils.deepReplaceKeyName(h[f],e,c);if(f!=d){delete h[f]}}break}return h};b.utils.isInArray=function(e,d){if(!(e)||!(e instanceof Array)){return false}for(var c=0;c<e.length;c++){if(d===e[c]){return true}}return false};b.utils.exists=function(c){switch(typeof(c)){case"string":return(c.length>0);break;case"object":return(c!==null);case"undefined":return false}return true};b.utils.empty=function(c){if(typeof c.hasChildNodes=="function"){while(c.hasChildNodes()){c.removeChild(c.firstChild)}}};b.utils.parseDimension=function(c){if(typeof c=="string"){if(c===""){return 0}else{if(c.lastIndexOf("%")>-1){return c}else{return parseInt(c.replace("px",""),10)}}}return c};b.utils.getDimensions=function(c){if(c&&c.style){return{x:b.utils.parseDimension(c.style.left),y:b.utils.parseDimension(c.style.top),width:b.utils.parseDimension(c.style.width),height:b.utils.parseDimension(c.style.height)}}else{return{}}}})(jwplayer);(function(a){a.events=function(){};a.events.COMPLETE="COMPLETE";a.events.ERROR="ERROR"})(jwplayer);(function(jwplayer){jwplayer.events.eventdispatcher=function(debug){var _debug=debug;var _listeners;var _globallisteners;this.resetEventListeners=function(){_listeners={};_globallisteners=[]};this.resetEventListeners();this.addEventListener=function(type,listener,count){try{if(!jwplayer.utils.exists(_listeners[type])){_listeners[type]=[]}if(typeof(listener)=="string"){eval("listener = "+listener)}_listeners[type].push({listener:listener,count:count})}catch(err){jwplayer.utils.log("error",err)}return false};this.removeEventListener=function(type,listener){try{for(var listenerIndex=0;listenerIndex<_listeners[type].length;listenerIndex++){if(_listeners[type][listenerIndex].listener.toString()==listener.toString()){_listeners[type].splice(listenerIndex,1);break}}}catch(err){jwplayer.utils.log("error",err)}return false};this.addGlobalListener=function(listener,count){try{if(typeof(listener)=="string"){eval("listener = "+listener)}_globallisteners.push({listener:listener,count:count})}catch(err){jwplayer.utils.log("error",err)}return false};this.removeGlobalListener=function(listener){try{for(var globalListenerIndex=0;globalListenerIndex<_globallisteners.length;globalListenerIndex++){if(_globallisteners[globalListenerIndex].listener.toString()==listener.toString()){_globallisteners.splice(globalListenerIndex,1);break}}}catch(err){jwplayer.utils.log("error",err)}return false};this.sendEvent=function(type,data){if(!jwplayer.utils.exists(data)){data={}}if(_debug){jwplayer.utils.log(type,data)}if(typeof _listeners[type]!="undefined"){for(var listenerIndex=0;listenerIndex<_listeners[type].length;listenerIndex++){try{_listeners[type][listenerIndex].listener(data)}catch(err){jwplayer.utils.log("There was an error while handling a listener: "+err.toString(),_listeners[type][listenerIndex].listener)}if(_listeners[type][listenerIndex]){if(_listeners[type][listenerIndex].count===1){delete _listeners[type][listenerIndex]}else{if(_listeners[type][listenerIndex].count>0){_listeners[type][listenerIndex].count=_listeners[type][listenerIndex].count-1}}}}}for(var globalListenerIndex=0;globalListenerIndex<_globallisteners.length;globalListenerIndex++){try{_globallisteners[globalListenerIndex].listener(data)}catch(err){jwplayer.utils.log("There was an error while handling a listener: "+err.toString(),_globallisteners[globalListenerIndex].listener)}if(_globallisteners[globalListenerIndex]){if(_globallisteners[globalListenerIndex].count===1){delete _globallisteners[globalListenerIndex]}else{if(_globallisteners[globalListenerIndex].count>0){_globallisteners[globalListenerIndex].count=_globallisteners[globalListenerIndex].count-1}}}}}}})(jwplayer);(function(a){var b={};a.utils.animations=function(){};a.utils.animations.transform=function(c,d){c.style.webkitTransform=d;c.style.MozTransform=d;c.style.OTransform=d;c.style.msTransform=d};a.utils.animations.transformOrigin=function(c,d){c.style.webkitTransformOrigin=d;c.style.MozTransformOrigin=d;c.style.OTransformOrigin=d;c.style.msTransformOrigin=d};a.utils.animations.rotate=function(c,d){a.utils.animations.transform(c,["rotate(",d,"deg)"].join(""))};a.utils.cancelAnimation=function(c){delete b[c.id]};a.utils.fadeTo=function(l,f,e,i,h,d){if(b[l.id]!=d&&a.utils.exists(d)){return}var c=new Date().getTime();if(d>c){setTimeout(function(){a.utils.fadeTo(l,f,e,i,0,d)},d-c)}l.style.display="block";if(!a.utils.exists(i)){i=l.style.opacity===""?1:l.style.opacity}if(l.style.opacity==f&&l.style.opacity!==""&&a.utils.exists(d)){if(f===0){l.style.display="none"}return}if(!a.utils.exists(d)){d=c;b[l.id]=d}if(!a.utils.exists(h)){h=0}var j=(c-d)/(e*1000);j=j>1?1:j;var k=f-i;var g=i+(j*k);if(g>1){g=1}else{if(g<0){g=0}}l.style.opacity=g;if(h>0){b[l.id]=d+h*1000;a.utils.fadeTo(l,f,e,i,0,b[l.id]);return}setTimeout(function(){a.utils.fadeTo(l,f,e,i,0,d)},10)}})(jwplayer);(function(a){a.utils.arrays=function(){};a.utils.arrays.indexOf=function(c,d){for(var b=0;b<c.length;b++){if(c[b]==d){return b}}return -1};a.utils.arrays.remove=function(c,d){var b=a.utils.arrays.indexOf(c,d);if(b>-1){c.splice(b,1)}}})(jwplayer);(function(a){a.utils.extensionmap={"3gp":{html5:"video/3gpp",flash:"video"},"3gpp":{html5:"video/3gpp"},"3g2":{html5:"video/3gpp2",flash:"video"},"3gpp2":{html5:"video/3gpp2"},flv:{flash:"video"},f4a:{html5:"audio/mp4"},f4b:{html5:"audio/mp4",flash:"video"},f4v:{html5:"video/mp4",flash:"video"},mov:{html5:"video/quicktime",flash:"video"},m4a:{html5:"audio/mp4",flash:"video"},m4b:{html5:"audio/mp4"},m4p:{html5:"audio/mp4"},m4v:{html5:"video/mp4",flash:"video"},mp4:{html5:"video/mp4",flash:"video"},rbs:{flash:"sound"},aac:{html5:"audio/aac",flash:"video"},mp3:{html5:"audio/mp3",flash:"sound"},ogg:{html5:"audio/ogg"},oga:{html5:"audio/ogg"},ogv:{html5:"video/ogg"},webm:{html5:"video/webm"},m3u8:{html5:"audio/x-mpegurl"},gif:{flash:"image"},jpeg:{flash:"image"},jpg:{flash:"image"},swf:{flash:"image"},png:{flash:"image"},wav:{html5:"audio/x-wav"}}})(jwplayer);(function(e){e.utils.mediaparser=function(){};var g={element:{width:"width",height:"height",id:"id","class":"className",name:"name"},media:{src:"file",preload:"preload",autoplay:"autostart",loop:"repeat",controls:"controls"},source:{src:"file",type:"type",media:"media","data-jw-width":"width","data-jw-bitrate":"bitrate"},video:{poster:"image"}};var f={};e.utils.mediaparser.parseMedia=function(i){return d(i)};function c(j,i){if(!e.utils.exists(i)){i=g[j]}else{e.utils.extend(i,g[j])}return i}function d(m,i){if(f[m.tagName.toLowerCase()]&&!e.utils.exists(i)){return f[m.tagName.toLowerCase()](m)}else{i=c("element",i);var n={};for(var j in i){if(j!="length"){var l=m.getAttribute(j);if(e.utils.exists(l)){n[i[j]]=l}}}var k=m.style["#background-color"];if(k&&!(k=="transparent"||k=="rgba(0, 0, 0, 0)")){n.screencolor=k}return n}}function h(n,k){k=c("media",k);var l=[];var j=e.utils.selectors("source",n);for(var m in j){if(!isNaN(m)){l.push(a(j[m]))}}var o=d(n,k);if(e.utils.exists(o.file)){l[0]={file:o.file}}o.levels=l;return o}function a(k,j){j=c("source",j);var i=d(k,j);i.width=i.width?i.width:0;i.bitrate=i.bitrate?i.bitrate:0;return i}function b(k,j){j=c("video",j);var i=h(k,j);return i}f.media=h;f.audio=h;f.source=a;f.video=b})(jwplayer);(function(a){a.utils.loaderstatus={NEW:"NEW",LOADING:"LOADING",ERROR:"ERROR",COMPLETE:"COMPLETE"};a.utils.scriptloader=function(c){var d=a.utils.loaderstatus.NEW;var b=new a.events.eventdispatcher();a.utils.extend(this,b);this.load=function(){if(d==a.utils.loaderstatus.NEW){d=a.utils.loaderstatus.LOADING;var e=document.createElement("script");e.onload=function(f){d=a.utils.loaderstatus.COMPLETE;b.sendEvent(a.events.COMPLETE)};e.onerror=function(f){d=a.utils.loaderstatus.ERROR;b.sendEvent(a.events.ERROR)};e.onreadystatechange=function(){if(e.readyState=="loaded"||e.readyState=="complete"){d=a.utils.loaderstatus.COMPLETE;b.sendEvent(a.events.COMPLETE)}};document.getElementsByTagName("head")[0].appendChild(e);e.src=c}};this.getStatus=function(){return d}}})(jwplayer);(function(a){a.utils.selectors=function(b,e){if(!a.utils.exists(e)){e=document}b=a.utils.strings.trim(b);var c=b.charAt(0);if(c=="#"){return e.getElementById(b.substr(1))}else{if(c=="."){if(e.getElementsByClassName){return e.getElementsByClassName(b.substr(1))}else{return a.utils.selectors.getElementsByTagAndClass("*",b.substr(1))}}else{if(b.indexOf(".")>0){var d=b.split(".");return a.utils.selectors.getElementsByTagAndClass(d[0],d[1])}else{return e.getElementsByTagName(b)}}}return null};a.utils.selectors.getElementsByTagAndClass=function(e,h,g){var j=[];if(!a.utils.exists(g)){g=document}var f=g.getElementsByTagName(e);for(var d=0;d<f.length;d++){if(a.utils.exists(f[d].className)){var c=f[d].className.split(" ");for(var b=0;b<c.length;b++){if(c[b]==h){j.push(f[d])}}}}return j}})(jwplayer);(function(a){a.utils.strings=function(){};a.utils.strings.trim=function(b){return b.replace(/^\s*/,"").replace(/\s*$/,"")};a.utils.strings.pad=function(c,d,b){if(!b){b="0"}while(c.length<d){c=b+c}return c};a.utils.strings.serialize=function(b){if(b==null){return null}else{if(b=="true"){return true}else{if(b=="false"){return false}else{if(isNaN(Number(b))||b.length>5||b.length==0){return b}else{return Number(b)}}}}};a.utils.strings.seconds=function(d){d=d.replace(",",".");var b=d.split(":");var c=0;if(d.substr(-1)=="s"){c=Number(d.substr(0,d.length-1))}else{if(d.substr(-1)=="m"){c=Number(d.substr(0,d.length-1))*60}else{if(d.substr(-1)=="h"){c=Number(d.substr(0,d.length-1))*3600}else{if(b.length>1){c=Number(b[b.length-1]);c+=Number(b[b.length-2])*60;if(b.length==3){c+=Number(b[b.length-3])*3600}}else{c=Number(d)}}}}return c};a.utils.strings.xmlAttribute=function(b,c){for(var d in b.attributes){if(b.attributes[d].name&&b.attributes[d].name.toLowerCase()==c.toLowerCase()){return b.attributes[d].value.toString()}}return""};a.utils.strings.jsonToString=function(f){var h=h||{};if(h&&h.stringify){return h.stringify(f)}var c=typeof(f);if(c!="object"||f===null){if(c=="string"){f='"'+f+'"'}else{return String(f)}}else{var g=[],b=(f&&f.constructor==Array);for(var d in f){var e=f[d];switch(typeof(e)){case"string":e='"'+e+'"';break;case"object":if(a.utils.exists(e)){e=a.utils.strings.jsonToString(e)}break}if(b){if(typeof(e)!="function"){g.push(String(e))}}else{if(typeof(e)!="function"){g.push('"'+d+'":'+String(e))}}}if(b){return"["+String(g)+"]"}else{return"{"+String(g)+"}"}}}})(jwplayer);(function(c){var d=new RegExp(/^(#|0x)[0-9a-fA-F]{3,6}/);c.utils.typechecker=function(g,f){f=!c.utils.exists(f)?b(g):f;return e(g,f)};function b(f){var g=["true","false","t","f"];if(g.toString().indexOf(f.toLowerCase().replace(" ",""))>=0){return"boolean"}else{if(d.test(f)){return"color"}else{if(!isNaN(parseInt(f,10))&&parseInt(f,10).toString().length==f.length){return"integer"}else{if(!isNaN(parseFloat(f))&&parseFloat(f).toString().length==f.length){return"float"}}}}return"string"}function e(g,f){if(!c.utils.exists(f)){return g}switch(f){case"color":if(g.length>0){return a(g)}return null;case"integer":return parseInt(g,10);case"float":return parseFloat(g);case"boolean":if(g.toLowerCase()=="true"){return true}else{if(g=="1"){return true}}return false}return g}function a(f){switch(f.toLowerCase()){case"blue":return parseInt("0000FF",16);case"green":return parseInt("00FF00",16);case"red":return parseInt("FF0000",16);case"cyan":return parseInt("00FFFF",16);case"magenta":return parseInt("FF00FF",16);case"yellow":return parseInt("FFFF00",16);case"black":return parseInt("000000",16);case"white":return parseInt("FFFFFF",16);default:f=f.replace(/(#|0x)?([0-9A-F]{3,6})$/gi,"$2");if(f.length==3){f=f.charAt(0)+f.charAt(0)+f.charAt(1)+f.charAt(1)+f.charAt(2)+f.charAt(2)}return parseInt(f,16)}return parseInt("000000",16)}})(jwplayer);(function(a){a.utils.parsers=function(){}})(jwplayer);(function(a){a.utils.parsers.jwparser=function(){};a.utils.parsers.jwparser.PREFIX="jwplayer";a.utils.parsers.jwparser.parseEntry=function(c,d){for(var b in c.childNodes){if(c.childNodes[b].prefix==a.utils.parsers.jwparser.PREFIX){d[c.childNodes[b].localName]=a.utils.strings.serialize(c.childNodes[b].textContent)}if(!d.file&&String(d.link).toLowerCase().indexOf("youtube")>-1){d.file=d.link}}return d};a.utils.parsers.jwparser.getProvider=function(c){if(c.type){return c.type}else{if(c.file.indexOf("youtube.com/w")>-1||c.file.indexOf("youtube.com/v")>-1||c.file.indexOf("youtu.be/")>-1){return"youtube"}else{if(c.streamer&&c.streamer.indexOf("rtmp")==0){return"rtmp"}else{if(c.streamer&&c.streamer.indexOf("http")==0){return"http"}else{var b=a.utils.strings.extension(c.file);if(extensions.hasOwnProperty(b)){return extensions[b]}}}}}return""}})(jwplayer);(function(a){a.utils.parsers.mediaparser=function(){};a.utils.parsers.mediaparser.PREFIX="media";a.utils.parsers.mediaparser.parseGroup=function(d,f){var e=false;for(var c in d.childNodes){if(d.childNodes[c].prefix==a.utils.parsers.mediaparser.PREFIX){if(!d.childNodes[c].localName){continue}switch(d.childNodes[c].localName.toLowerCase()){case"content":if(!e){f.file=a.utils.strings.xmlAttribute(d.childNodes[c],"url")}if(d.childNodes[c].attributes.duration){f.duration=a.utils.strings.seconds(a.utils.strings.xmlAttribute(d.childNodes[c],"duration"))}if(d.childNodes[c].attributes.start){f.start=a.utils.strings.seconds(a.utils.strings.xmlAttribute(d.childNodes[c],"start"))}if(d.childNodes[c].childNodes&&d.childNodes[c].childNodes.length>0){f=a.utils.parsers.mediaparser.parseGroup(d.childNodes[c],f)}if(d.childNodes[c].attributes.width||d.childNodes[c].attributes.bitrate){if(!f.levels){f.levels=[]}f.levels.push({width:a.utils.strings.xmlAttribute(d.childNodes[c],"width"),bitrate:a.utils.strings.xmlAttribute(d.childNodes[c],"bitrate"),file:a.utils.strings.xmlAttribute(d.childNodes[c],"url")})}break;case"title":f.title=d.childNodes[c].textContent;break;case"description":f.description=d.childNodes[c].textContent;break;case"keywords":f.tags=d.childNodes[c].textContent;break;case"thumbnail":f.image=a.utils.strings.xmlAttribute(d.childNodes[c],"url");break;case"credit":f.author=d.childNodes[c].textContent;break;case"player":var b=d.childNodes[c].url;if(b.indexOf("youtube.com")>=0||b.indexOf("youtu.be")>=0){e=true;f.file=a.utils.strings.xmlAttribute(d.childNodes[c],"url")}break;case"group":f=a.utils.parsers.mediaparser.parseGroup(d.childNodes[c],f);break}}}return f}})(jwplayer);(function(b){b.utils.parsers.rssparser=function(){};b.utils.parsers.rssparser.parse=function(f){var c=[];for(var e in f.childNodes){if(f.childNodes[e].localName&&f.childNodes[e].localName.toLowerCase()=="channel"){for(var d in f.childNodes[e].childNodes){if(f.childNodes[e].childNodes[d].localName&&f.childNodes[e].childNodes[d].localName.toLowerCase()=="item"){c.push(a(f.childNodes[e].childNodes[d]))}}}}return c};function a(d){var e={};for(var c in d.childNodes){if(!d.childNodes[c].localName){continue}switch(d.childNodes[c].localName.toLowerCase()){case"enclosure":e.file=b.utils.strings.xmlAttribute(d.childNodes[c],"url");break;case"title":e.title=d.childNodes[c].textContent;break;case"pubdate":e.date=d.childNodes[c].textContent;break;case"description":e.description=d.childNodes[c].textContent;break;case"link":e.link=d.childNodes[c].textContent;break;case"category":if(e.tags){e.tags+=d.childNodes[c].textContent}else{e.tags=d.childNodes[c].textContent}break}}e=b.utils.parsers.mediaparser.parseGroup(d,e);e=b.utils.parsers.jwparser.parseEntry(d,e);return new b.html5.playlistitem(e)}})(jwplayer);(function(a){var c={};var b={};a.plugins=function(){};a.plugins.loadPlugins=function(e,d){b[e]=new a.plugins.pluginloader(new a.plugins.model(c),d);return b[e]};a.plugins.registerPlugin=function(h,f,e){var d=a.utils.getPluginName(h);if(c[d]){c[d].registerPlugin(h,f,e)}else{a.utils.log("A plugin ("+h+") was registered with the player that was not loaded. Please check your configuration.");for(var g in b){b[g].pluginFailed()}}}})(jwplayer);(function(a){a.plugins.model=function(b){this.addPlugin=function(c){var d=a.utils.getPluginName(c);if(!b[d]){b[d]=new a.plugins.plugin(c)}return b[d]}}})(jwplayer);(function(a){a.plugins.pluginmodes={FLASH:"FLASH",JAVASCRIPT:"JAVASCRIPT",HYBRID:"HYBRID"};a.plugins.plugin=function(b){var d="http://plugins.longtailvideo.com";var i=a.utils.loaderstatus.NEW;var j;var h;var k;var c=new a.events.eventdispatcher();a.utils.extend(this,c);function e(){switch(a.utils.getPluginPathType(b)){case a.utils.pluginPathType.ABSOLUTE:return b;case a.utils.pluginPathType.RELATIVE:return a.utils.getAbsolutePath(b,window.location.href);case a.utils.pluginPathType.CDN:var m=a.utils.getPluginName(b);var l=a.utils.getPluginVersion(b);return d+"/"+a.version.split(".")[0]+"/"+m+"/"+m+(l!==""?("-"+l):"")+".js"}}function g(l){k=setTimeout(function(){i=a.utils.loaderstatus.COMPLETE;c.sendEvent(a.events.COMPLETE)},1000)}function f(l){i=a.utils.loaderstatus.ERROR;c.sendEvent(a.events.ERROR)}this.load=function(){if(i==a.utils.loaderstatus.NEW){if(b.lastIndexOf(".swf")>0){j=b;i=a.utils.loaderstatus.COMPLETE;c.sendEvent(a.events.COMPLETE);return}i=a.utils.loaderstatus.LOADING;var l=new a.utils.scriptloader(e());l.addEventListener(a.events.COMPLETE,g);l.addEventListener(a.events.ERROR,f);l.load()}};this.registerPlugin=function(n,m,l){if(k){clearTimeout(k);k=undefined}if(m&&l){j=l;h=m}else{if(typeof m=="string"){j=m}else{if(typeof m=="function"){h=m}else{if(!m&&!l){j=n}}}}i=a.utils.loaderstatus.COMPLETE;c.sendEvent(a.events.COMPLETE)};this.getStatus=function(){return i};this.getPluginName=function(){return a.utils.getPluginName(b)};this.getFlashPath=function(){if(j){switch(a.utils.getPluginPathType(j)){case a.utils.pluginPathType.ABSOLUTE:return j;case a.utils.pluginPathType.RELATIVE:if(b.lastIndexOf(".swf")>0){return a.utils.getAbsolutePath(j,window.location.href)}return a.utils.getAbsolutePath(j,e());case a.utils.pluginPathType.CDN:if(j.indexOf("-")>-1){return j+"h"}return j+"-h"}}return null};this.getJS=function(){return h};this.getPluginmode=function(){if(typeof j!="undefined"&&typeof h!="undefined"){return a.plugins.pluginmodes.HYBRID}else{if(typeof j!="undefined"){return a.plugins.pluginmodes.FLASH}else{if(typeof h!="undefined"){return a.plugins.pluginmodes.JAVASCRIPT}}}};this.getNewInstance=function(m,l,n){return new h(m,l,n)};this.getURL=function(){return b}}})(jwplayer);(function(a){a.plugins.pluginloader=function(h,e){var g={};var j=a.utils.loaderstatus.NEW;var d=false;var b=false;var c=new a.events.eventdispatcher();a.utils.extend(this,c);function f(){if(!b){b=true;j=a.utils.loaderstatus.COMPLETE;c.sendEvent(a.events.COMPLETE)}}function i(){if(!b){var l=0;for(plugin in g){var k=g[plugin].getStatus();if(k==a.utils.loaderstatus.LOADING||k==a.utils.loaderstatus.NEW){l++}}if(l==0){f()}}}this.setupPlugins=function(m,k,r){var l={length:0,plugins:{}};var o={length:0,plugins:{}};for(var n in g){var p=g[n].getPluginName();if(g[n].getFlashPath()){l.plugins[g[n].getFlashPath()]=k.plugins[n];l.plugins[g[n].getFlashPath()].pluginmode=g[n].getPluginmode();l.length++}if(g[n].getJS()){var q=document.createElement("div");q.id=m.id+"_"+p;q.style.position="absolute";q.style.zIndex=o.length+10;o.plugins[p]=g[n].getNewInstance(m,k.plugins[n],q);o.length++;if(typeof o.plugins[p].resize!="undefined"){m.onReady(r(o.plugins[p],q,true));m.onResize(r(o.plugins[p],q))}}}m.plugins=o.plugins;return l};this.load=function(){j=a.utils.loaderstatus.LOADING;d=true;for(var k in e){g[k]=h.addPlugin(k);g[k].addEventListener(a.events.COMPLETE,i);g[k].addEventListener(a.events.ERROR,i)}for(k in e){g[k].load()}d=false;i()};this.pluginFailed=function(){f()};this.getStatus=function(){return j}}})(jwplayer);(function(b){var a=[];b.api=function(d){this.container=d;this.id=d.id;var m={};var r={};var p={};var c=[];var h=undefined;var k=false;var i=[];var o=b.utils.getOuterHTML(d);var q={};var j={};this.getBuffer=function(){return this.callInternal("jwGetBuffer")};this.getContainer=function(){return this.container};function e(s){return function(x,t,u,v){var w;if(t){j[x]=t;w="jwplayer('"+s.id+"').callback('"+x+"')"}else{if(!t&&j[x]){delete j[x]}}h.jwDockSetButton(x,w,u,v);return s}}this.getPlugin=function(s){var t=this;if(s=="dock"){return{setButton:e(t),show:function(){t.callInternal("jwShowDock")},hide:function(){t.callInternal("jwHideDock")},onShow:function(u){t.componentListener("dock",b.api.events.JWPLAYER_COMPONENT_SHOW,u)},onHide:function(u){t.componentListener("dock",b.api.events.JWPLAYER_COMPONENT_HIDE,u)}}}else{if(s=="controlbar"){return{show:function(){t.callInternal("jwShowControlbar")},hide:function(){t.callInternal("jwHideControlbar")},onShow:function(u){t.componentListener("controlbar",b.api.events.JWPLAYER_COMPONENT_SHOW,u)},onHide:function(u){t.componentListener("controlbar",b.api.events.JWPLAYER_COMPONENT_HIDE,u)}}}else{if(s=="display"){return{show:function(){t.callInternal("jwShowDisplay")},hide:function(){t.callInternal("jwHideDisplay")},onShow:function(u){t.componentListener("display",b.api.events.JWPLAYER_COMPONENT_SHOW,u)},onHide:function(u){t.componentListener("display",b.api.events.JWPLAYER_COMPONENT_HIDE,u)}}}}}return this.plugins[s]};this.callback=function(s){if(j[s]){return j[s]()}};this.getDuration=function(){return this.callInternal("jwGetDuration")};this.getFullscreen=function(){return this.callInternal("jwGetFullscreen")};this.getHeight=function(){return this.callInternal("jwGetHeight")};this.getLockState=function(){return this.callInternal("jwGetLockState")};this.getMeta=function(){return this.getItemMeta()};this.getMute=function(){return this.callInternal("jwGetMute")};this.getPlaylist=function(){var t=this.callInternal("jwGetPlaylist");if(this.renderingMode=="flash"){b.utils.deepReplaceKeyName(t,"__dot__",".")}for(var s=0;s<t.length;s++){if(!b.utils.exists(t[s].index)){t[s].index=s}}return t};this.getPlaylistItem=function(s){if(!b.utils.exists(s)){s=this.getCurrentItem()}return this.getPlaylist()[s]};this.getPosition=function(){return this.callInternal("jwGetPosition")};this.getRenderingMode=function(){return this.renderingMode};this.getState=function(){return this.callInternal("jwGetState")};this.getVolume=function(){return this.callInternal("jwGetVolume")};this.getWidth=function(){return this.callInternal("jwGetWidth")};this.setFullscreen=function(s){if(!b.utils.exists(s)){this.callInternal("jwSetFullscreen",!this.callInternal("jwGetFullscreen"))}else{this.callInternal("jwSetFullscreen",s)}return this};this.setMute=function(s){if(!b.utils.exists(s)){this.callInternal("jwSetMute",!this.callInternal("jwGetMute"))}else{this.callInternal("jwSetMute",s)}return this};this.lock=function(){return this};this.unlock=function(){return this};this.load=function(s){this.callInternal("jwLoad",s);return this};this.playlistItem=function(s){this.callInternal("jwPlaylistItem",s);return this};this.playlistPrev=function(){this.callInternal("jwPlaylistPrev");return this};this.playlistNext=function(){this.callInternal("jwPlaylistNext");return this};this.resize=function(t,s){if(this.renderingMode=="html5"){h.jwResize(t,s)}else{this.container.width=t;this.container.height=s}return this};this.play=function(s){if(typeof s=="undefined"){s=this.getState();if(s==b.api.events.state.PLAYING||s==b.api.events.state.BUFFERING){this.callInternal("jwPause")}else{this.callInternal("jwPlay")}}else{this.callInternal("jwPlay",s)}return this};this.pause=function(s){if(typeof s=="undefined"){s=this.getState();if(s==b.api.events.state.PLAYING||s==b.api.events.state.BUFFERING){this.callInternal("jwPause")}else{this.callInternal("jwPlay")}}else{this.callInternal("jwPause",s)}return this};this.stop=function(){this.callInternal("jwStop");return this};this.seek=function(s){this.callInternal("jwSeek",s);return this};this.setVolume=function(s){this.callInternal("jwSetVolume",s);return this};this.onBufferChange=function(s){return this.eventListener(b.api.events.JWPLAYER_MEDIA_BUFFER,s)};this.onBufferFull=function(s){return this.eventListener(b.api.events.JWPLAYER_MEDIA_BUFFER_FULL,s)};this.onError=function(s){return this.eventListener(b.api.events.JWPLAYER_ERROR,s)};this.onFullscreen=function(s){return this.eventListener(b.api.events.JWPLAYER_FULLSCREEN,s)};this.onMeta=function(s){return this.eventListener(b.api.events.JWPLAYER_MEDIA_META,s)};this.onMute=function(s){return this.eventListener(b.api.events.JWPLAYER_MEDIA_MUTE,s)};this.onPlaylist=function(s){return this.eventListener(b.api.events.JWPLAYER_PLAYLIST_LOADED,s)};this.onPlaylistItem=function(s){return this.eventListener(b.api.events.JWPLAYER_PLAYLIST_ITEM,s)};this.onReady=function(s){return this.eventListener(b.api.events.API_READY,s)};this.onResize=function(s){return this.eventListener(b.api.events.JWPLAYER_RESIZE,s)};this.onComplete=function(s){return this.eventListener(b.api.events.JWPLAYER_MEDIA_COMPLETE,s)};this.onSeek=function(s){return this.eventListener(b.api.events.JWPLAYER_MEDIA_SEEK,s)};this.onTime=function(s){return this.eventListener(b.api.events.JWPLAYER_MEDIA_TIME,s)};this.onVolume=function(s){return this.eventListener(b.api.events.JWPLAYER_MEDIA_VOLUME,s)};this.onBuffer=function(s){return this.stateListener(b.api.events.state.BUFFERING,s)};this.onPause=function(s){return this.stateListener(b.api.events.state.PAUSED,s)};this.onPlay=function(s){return this.stateListener(b.api.events.state.PLAYING,s)};this.onIdle=function(s){return this.stateListener(b.api.events.state.IDLE,s)};this.remove=function(){m={};i=[];if(b.utils.getOuterHTML(this.container)!=o){b.api.destroyPlayer(this.id,o)}};this.setup=function(t){if(b.embed){var s=this.id;this.remove();var u=b(s);u.config=t;return new b.embed(u)}return this};this.registerPlugin=function(u,t,s){b.plugins.registerPlugin(u,t,s)};this.setPlayer=function(s,t){h=s;this.renderingMode=t};this.stateListener=function(s,t){if(!r[s]){r[s]=[];this.eventListener(b.api.events.JWPLAYER_PLAYER_STATE,g(s))}r[s].push(t);return this};function g(s){return function(u){var t=u.newstate,w=u.oldstate;if(t==s){var v=r[t];if(v){for(var x=0;x<v.length;x++){if(typeof v[x]=="function"){v[x].call(this,{oldstate:w,newstate:t})}}}}}}this.componentListener=function(s,t,u){if(!p[s]){p[s]={}}if(!p[s][t]){p[s][t]=[];this.eventListener(t,l(s,t))}p[s][t].push(u);return this};function l(s,t){return function(v){if(s==v.component){var u=p[s][t];if(u){for(var w=0;w<u.length;w++){if(typeof u[w]=="function"){u[w].call(this,v)}}}}}}this.addInternalListener=function(s,t){s.jwAddEventListener(t,'function(dat) { jwplayer("'+this.id+'").dispatchEvent("'+t+'", dat); }')};this.eventListener=function(s,t){if(!m[s]){m[s]=[];if(h&&k){this.addInternalListener(h,s)}}m[s].push(t);return this};this.dispatchEvent=function(u){if(m[u]){var t=f(u,arguments[1]);for(var s=0;s<m[u].length;s++){if(typeof m[u][s]=="function"){m[u][s].call(this,t)}}}};function f(u,s){var w=b.utils.extend({},s);if(u==b.api.events.JWPLAYER_FULLSCREEN&&!w.fullscreen){w.fullscreen=w.message=="true"?true:false;delete w.message}else{if(typeof w.data=="object"){w=b.utils.extend(w,w.data);delete w.data}}var t=["position","duration","offset"];for(var v in t){if(w[t[v]]){w[t[v]]=Math.round(w[t[v]]*1000)/1000}}return w}this.callInternal=function(t,s){if(k){if(typeof h!="undefined"&&typeof h[t]=="function"){if(b.utils.exists(s)){return(h[t])(s)}else{return(h[t])()}}return null}else{i.push({method:t,parameters:s})}};this.playerReady=function(u){k=true;if(!h){this.setPlayer(document.getElementById(u.id))}this.container=document.getElementById(this.id);for(var s in m){this.addInternalListener(h,s)}this.eventListener(b.api.events.JWPLAYER_PLAYLIST_ITEM,function(v){q={}});this.eventListener(b.api.events.JWPLAYER_MEDIA_META,function(v){b.utils.extend(q,v.metadata)});this.dispatchEvent(b.api.events.API_READY);while(i.length>0){var t=i.shift();this.callInternal(t.method,t.parameters)}};this.getItemMeta=function(){return q};this.getCurrentItem=function(){return this.callInternal("jwGetPlaylistIndex")};function n(u,w,v){var s=[];if(!w){w=0}if(!v){v=u.length-1}for(var t=w;t<=v;t++){s.push(u[t])}return s}return this};b.api.selectPlayer=function(d){var c;if(!b.utils.exists(d)){d=0}if(d.nodeType){c=d}else{if(typeof d=="string"){c=document.getElementById(d)}}if(c){var e=b.api.playerById(c.id);if(e){return e}else{return b.api.addPlayer(new b.api(c))}}else{if(typeof d=="number"){return b.getPlayers()[d]}}return null};b.api.events={API_READY:"jwplayerAPIReady",JWPLAYER_READY:"jwplayerReady",JWPLAYER_FULLSCREEN:"jwplayerFullscreen",JWPLAYER_RESIZE:"jwplayerResize",JWPLAYER_ERROR:"jwplayerError",JWPLAYER_COMPONENT_SHOW:"jwplayerComponentShow",JWPLAYER_COMPONENT_HIDE:"jwplayerComponentHide",JWPLAYER_MEDIA_BUFFER:"jwplayerMediaBuffer",JWPLAYER_MEDIA_BUFFER_FULL:"jwplayerMediaBufferFull",JWPLAYER_MEDIA_ERROR:"jwplayerMediaError",JWPLAYER_MEDIA_LOADED:"jwplayerMediaLoaded",JWPLAYER_MEDIA_COMPLETE:"jwplayerMediaComplete",JWPLAYER_MEDIA_SEEK:"jwplayerMediaSeek",JWPLAYER_MEDIA_TIME:"jwplayerMediaTime",JWPLAYER_MEDIA_VOLUME:"jwplayerMediaVolume",JWPLAYER_MEDIA_META:"jwplayerMediaMeta",JWPLAYER_MEDIA_MUTE:"jwplayerMediaMute",JWPLAYER_PLAYER_STATE:"jwplayerPlayerState",JWPLAYER_PLAYLIST_LOADED:"jwplayerPlaylistLoaded",JWPLAYER_PLAYLIST_ITEM:"jwplayerPlaylistItem"};b.api.events.state={BUFFERING:"BUFFERING",IDLE:"IDLE",PAUSED:"PAUSED",PLAYING:"PLAYING"};b.api.playerById=function(d){for(var c=0;c<a.length;c++){if(a[c].id==d){return a[c]}}return null};b.api.addPlayer=function(c){for(var d=0;d<a.length;d++){if(a[d]==c){return c}}a.push(c);return c};b.api.destroyPlayer=function(g,d){var f=-1;for(var i=0;i<a.length;i++){if(a[i].id==g){f=i;continue}}if(f>=0){var c=document.getElementById(a[f].id);if(document.getElementById(a[f].id+"_wrapper")){c=document.getElementById(a[f].id+"_wrapper")}if(c){if(d){b.utils.setOuterHTML(c,d)}else{var h=document.createElement("div");var e=c.id;if(c.id.indexOf("_wrapper")==c.id.length-8){newID=c.id.substring(0,c.id.length-8)}h.setAttribute("id",e);c.parentNode.replaceChild(h,c)}}a.splice(f,1)}return null};b.getPlayers=function(){return a.slice(0)}})(jwplayer);var _userPlayerReady=(typeof playerReady=="function")?playerReady:undefined;playerReady=function(b){var a=jwplayer.api.playerById(b.id);if(a){a.playerReady(b)}else{jwplayer.api.selectPlayer(b.id).playerReady(b)}if(_userPlayerReady){_userPlayerReady.call(this,b)}};(function(a){a.embed=function(g){var i={width:400,height:300,components:{controlbar:{position:"over"}}};var f=a.utils.mediaparser.parseMedia(g.container);var e=new a.embed.config(a.utils.extend(i,f,g.config),this);var h=a.plugins.loadPlugins(g.id,e.plugins);function c(l,k){for(var j in k){if(typeof l[j]=="function"){(l[j]).call(l,k[j])}}}function d(){if(h.getStatus()==a.utils.loaderstatus.COMPLETE){for(var l=0;l<e.modes.length;l++){if(e.modes[l].type&&a.embed[e.modes[l].type]){var j=e;if(e.modes[l].config){j=a.utils.extend(a.utils.clone(e),e.modes[l].config)}var k=new a.embed[e.modes[l].type](document.getElementById(g.id),e.modes[l],j,h,g);if(k.supportsConfig()){k.embed();c(g,e.events);return g}}}a.utils.log("No suitable players found");new a.embed.logo(a.utils.extend({hide:true},e.components.logo),"none",g.id)}}h.addEventListener(a.events.COMPLETE,d);h.addEventListener(a.events.ERROR,d);h.load();return g};function b(){if(!document.body){return setTimeout(b,15)}var c=a.utils.selectors.getElementsByTagAndClass("video","jwplayer");for(var d=0;d<c.length;d++){var e=c[d];a(e.id).setup({})}}b()})(jwplayer);(function(a){function c(){return[{type:"flash",src:"/jwplayer/player.swf"},{type:"html5"},{type:"download"}]}function e(l){var k=l.toLowerCase();var j=["left","right","top","bottom"];for(var i=0;i<j.length;i++){if(k==j[i]){return true}}return false}function d(j){var i=false;i=(j instanceof Array)||(typeof j=="object"&&!j.position&&!j.size);return i}function h(i){if(typeof i=="string"){if(parseInt(i).toString()==i||i.toLowerCase().indexOf("px")>-1){return parseInt(i)}}return i}var f=["playlist","dock","controlbar","logo","display"];function g(j){var m={};switch(a.utils.typeOf(j.plugins)){case"object":for(var l in j.plugins){m[a.utils.getPluginName(l)]=l}break;case"string":var n=j.plugins.split(",");for(var k=0;k<n.length;k++){m[a.utils.getPluginName(n[k])]=n[k]}break}return m}function b(m,l,k,i){if(a.utils.typeOf(m[l])!="object"){m[l]={}}var j=m[l][k];if(a.utils.typeOf(j)!="object"){m[l][k]=j={}}if(i){if(l=="plugins"){var n=a.utils.getPluginName(k);j[i]=m[n+"."+i];delete m[n+"."+i]}else{j[i]=m[k+"."+i];delete m[k+"."+i]}}}a.embed.deserialize=function(j){var k=g(j);for(var i in k){b(j,"plugins",k[i])}for(var n in j){if(n.indexOf(".")>-1){var m=n.split(".");var l=m[0];var n=m[1];if(a.utils.isInArray(f,l)){b(j,"components",l,n)}else{if(k[l]){b(j,"plugins",k[l],n)}}}}return j};a.embed.config=function(i,r){var q=a.utils.extend({},i);var o;if(d(q.playlist)){o=q.playlist;delete q.playlist}q=a.embed.deserialize(q);q.height=h(q.height);q.width=h(q.width);if(typeof q.plugins=="string"){var j=q.plugins.split(",");if(typeof q.plugins!="object"){q.plugins={}}for(var m=0;m<j.length;m++){var n=a.utils.getPluginName(j[m]);if(typeof q[n]=="object"){q.plugins[j[m]]=q[n];delete q[n]}else{q.plugins[j[m]]={}}}}for(var p=0;p<f.length;p++){var l=f[p];if(a.utils.exists(q[l])){if(typeof q[l]!="object"){if(!q.components[l]){q.components[l]={}}if(l=="logo"){q.components[l].file=q[l]}else{q.components[l].position=q[l]}delete q[l]}else{if(!q.components[l]){q.components[l]={}}a.utils.extend(q.components[l],q[l]);delete q[l]}}if(typeof q[l+"size"]!="undefined"){if(!q.components[l]){q.components[l]={}}q.components[l].size=q[l+"size"];delete q[l+"size"]}}if(typeof q.icons!="undefined"){if(!q.components.display){q.components.display={}}q.components.display.icons=q.icons;delete q.icons}if(q.players){q.modes=q.players;delete q.players}var k;if(q.flashplayer&&!q.modes){k=c();k[0].src=q.flashplayer;delete q.flashplayer}else{if(q.modes){if(typeof q.modes=="string"){k=c();k[0].src=q.modes}else{if(q.modes instanceof Array){k=q.modes}else{if(typeof q.modes=="object"&&q.modes.type){k=[q.modes]}}}delete q.modes}else{k=c()}}q.modes=k;if(o){q.playlist=o}return q}})(jwplayer);(function(a){a.embed.download=function(c,g,b,d,f){this.embed=function(){var j=a.utils.extend({},b);var p={};var i=b.width?b.width:480;if(typeof i!="number"){i=parseInt(i,10)}var l=b.height?b.height:320;if(typeof l!="number"){l=parseInt(l,10)}var t,n,m;var r={};if(b.playlist&&b.playlist.length){r.file=b.playlist[0].file;n=b.playlist[0].image;r.levels=b.playlist[0].levels}else{r.file=b.file;n=b.image;r.levels=b.levels}if(r.file){t=r.file}else{if(r.levels&&r.levels.length){t=r.levels[0].file}}m=t?"pointer":"auto";var k={display:{style:{cursor:m,width:i,height:l,backgroundColor:"#000",position:"relative",textDecoration:"none",border:"none",display:"block"}},display_icon:{style:{cursor:m,position:"absolute",display:t?"block":"none",top:0,left:0,border:0,margin:0,padding:0,zIndex:3,width:50,height:50,backgroundImage:"url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAALdJREFUeNrs18ENgjAYhmFouDOCcQJGcARHgE10BDcgTOIosAGwQOuPwaQeuFRi2p/3Sb6EC5L3QCxZBgAAAOCorLW1zMn65TrlkH4NcV7QNcUQt7Gn7KIhxA+qNIR81spOGkL8oFJDyLJRdosqKDDkK+iX5+d7huzwM40xptMQMkjIOeRGo+VkEVvIPfTGIpKASfYIfT9iCHkHrBEzf4gcUQ56aEzuGK/mw0rHpy4AAACAf3kJMACBxjAQNRckhwAAAABJRU5ErkJggg==)"}},display_iconBackground:{style:{cursor:m,position:"absolute",display:t?"block":"none",top:((l-50)/2),left:((i-50)/2),border:0,width:50,height:50,margin:0,padding:0,zIndex:2,backgroundImage:"url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAEpJREFUeNrszwENADAIA7DhX8ENoBMZ5KR10EryckCJiIiIiIiIiIiIiIiIiIiIiIh8GmkRERERERERERERERERERERERGRHSPAAPlXH1phYpYaAAAAAElFTkSuQmCC)"}},display_image:{style:{width:i,height:l,display:n?"block":"none",position:"absolute",cursor:m,left:0,top:0,margin:0,padding:0,textDecoration:"none",zIndex:1,border:"none"}}};var h=function(u,w,x){var v=document.createElement(u);if(x){v.id=x}else{v.id=c.id+"_jwplayer_"+w}a.utils.css(v,k[w].style);return v};p.display=h("a","display",c.id);if(t){p.display.setAttribute("href",a.utils.getAbsolutePath(t))}p.display_image=h("img","display_image");p.display_image.setAttribute("alt","Click to download...");if(n){p.display_image.setAttribute("src",a.utils.getAbsolutePath(n))}if(true){p.display_icon=h("div","display_icon");p.display_iconBackground=h("div","display_iconBackground");p.display.appendChild(p.display_image);p.display_iconBackground.appendChild(p.display_icon);p.display.appendChild(p.display_iconBackground)}_css=a.utils.css;_hide=function(u){_css(u,{display:"none"})};function q(u){_imageWidth=p.display_image.naturalWidth;_imageHeight=p.display_image.naturalHeight;s()}function s(){a.utils.stretch(a.utils.stretching.UNIFORM,p.display_image,i,l,_imageWidth,_imageHeight)}p.display_image.onerror=function(u){_hide(p.display_image)};p.display_image.onload=q;c.parentNode.replaceChild(p.display,c);var o=(b.plugins&&b.plugins.logo)?b.plugins.logo:{};p.display.appendChild(new a.embed.logo(b.components.logo,"download",c.id));f.container=document.getElementById(f.id);f.setPlayer(p.display,"download")};this.supportsConfig=function(){if(b){var j=a.utils.getFirstPlaylistItemFromConfig(b);if(typeof j.file=="undefined"&&typeof j.levels=="undefined"){return true}else{if(j.file){return e(j.file,j.provider,j.playlistfile)}else{if(j.levels&&j.levels.length){for(var h=0;h<j.levels.length;h++){if(j.levels[h].file&&e(j.levels[h].file,j.provider,j.playlistfile)){return true}}}}}}else{return true}};function e(i,k,h){if(h){return false}var j=["image","sound","youtube","http"];if(k&&(j.toString().indexOf(k)>-1)){return true}if(!k||(k&&k=="video")){var l=a.utils.extension(i);if(l&&a.utils.extensionmap[l]){return true}}return false}}})(jwplayer);(function(a){a.embed.flash=function(f,g,k,e,i){function l(n,m,o){var p=document.createElement("param");p.setAttribute("name",m);p.setAttribute("value",o);n.appendChild(p)}function j(n,o,m){return function(p){if(m){document.getElementById(i.id+"_wrapper").appendChild(o)}var r=document.getElementById(i.id).getPluginConfig("display");n.resize(r.width,r.height);var q={left:r.x,top:r.y};a.utils.css(o,q)}}function d(o){if(!o){return{}}var q={};for(var n in o){var m=o[n];for(var p in m){q[n+"."+p]=m[p]}}return q}function h(p,o){if(p[o]){var r=p[o];for(var n in r){var m=r[n];if(typeof m=="string"){if(!p[n]){p[n]=m}}else{for(var q in m){if(!p[n+"."+q]){p[n+"."+q]=m[q]}}}}delete p[o]}}function b(p){if(!p){return{}}var s={},r=[];for(var m in p){var o=a.utils.getPluginName(m);var n=p[m];r.push(m);for(var q in n){s[o+"."+q]=n[q]}}s.plugins=r.join(",");return s}function c(o){var m=o.netstreambasepath?"":"netstreambasepath="+encodeURIComponent(window.location.href.split("#")[0])+"&";for(var n in o){if(typeof(o[n])=="object"){m+=n+"="+encodeURIComponent("[[JSON]]"+a.utils.strings.jsonToString(o[n]))+"&"}else{m+=n+"="+encodeURIComponent(o[n])+"&"}}return m.substring(0,m.length-1)}this.embed=function(){k.id=i.id;var x;var p=a.utils.extend({},k);var m=p.width;var v=p.height;if(f.id+"_wrapper"==f.parentNode.id){x=document.getElementById(f.id+"_wrapper")}else{x=document.createElement("div");x.id=f.id+"_wrapper";a.utils.wrap(f,x);a.utils.css(x,{position:"relative",width:m,height:v})}var n=e.setupPlugins(i,p,j);if(n.length>0){a.utils.extend(p,b(n.plugins))}else{delete p.plugins}var q=["height","width","modes","events"];for(var t=0;t<q.length;t++){delete p[q[t]]}var o="opaque";if(p.wmode){o=p.wmode}h(p,"components");h(p,"providers");if(typeof p["dock.position"]!="undefined"){if(p["dock.position"].toString().toLowerCase()=="false"){p.dock=p["dock.position"];delete p["dock.position"]}}var w="#000000";var s;if(a.utils.isIE()){var u='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" bgcolor="'+w+'" width="100%" height="100%" id="'+f.id+'" name="'+f.id+'" tabindex=0"">';u+='<param name="movie" value="'+g.src+'">';u+='<param name="allowfullscreen" value="true">';u+='<param name="allowscriptaccess" value="always">';u+='<param name="seamlesstabbing" value="true">';u+='<param name="wmode" value="'+o+'">';u+='<param name="flashvars" value="'+c(p)+'">';u+="</object>";a.utils.setOuterHTML(f,u);s=document.getElementById(f.id)}else{var r=document.createElement("object");r.setAttribute("type","application/x-shockwave-flash");r.setAttribute("data",g.src);r.setAttribute("width","100%");r.setAttribute("height","100%");r.setAttribute("bgcolor","#000000");r.setAttribute("id",f.id);r.setAttribute("name",f.id);r.setAttribute("tabindex",0);l(r,"allowfullscreen","true");l(r,"allowscriptaccess","always");l(r,"seamlesstabbing","true");l(r,"wmode",o);l(r,"flashvars",c(p));f.parentNode.replaceChild(r,f);s=r}i.container=s;i.setPlayer(s,"flash")};this.supportsConfig=function(){if(a.utils.hasFlash()){if(k){var n=a.utils.getFirstPlaylistItemFromConfig(k);if(typeof n.file=="undefined"&&typeof n.levels=="undefined"){return true}else{if(n.file){return flashCanPlay(n.file,n.provider)}else{if(n.levels&&n.levels.length){for(var m=0;m<n.levels.length;m++){if(n.levels[m].file&&flashCanPlay(n.levels[m].file,n.provider)){return true}}}}}}else{return true}}return false};flashCanPlay=function(m,o){var n=["video","http","sound","image"];if(o&&(n.toString().indexOf(o<0))){return true}var p=a.utils.extension(m);if(!p){return true}if(a.utils.exists(a.utils.extensionmap[p])&&!a.utils.exists(a.utils.extensionmap[p].flash)){return false}return true}}})(jwplayer);(function(a){a.embed.html5=function(c,g,b,d,f){function e(i,j,h){return function(k){var l=document.getElementById(c.id+"_displayarea");if(h){l.appendChild(j)}var m=l.style;i.resize(parseInt(m.width.replace("px","")),parseInt(m.height.replace("px","")));j.left=m.left;j.top=m.top}}this.embed=function(){if(a.html5){d.setupPlugins(f,b,e);c.innerHTML="";var j=a.utils.extend({screencolor:"0x000000"},b);var h=["plugins","modes","events"];for(var k=0;k<h.length;k++){delete j[h[k]]}if(j.levels&&!j.sources){j.sources=b.levels}if(j.skin&&j.skin.toLowerCase().indexOf(".zip")>0){j.skin=j.skin.replace(/\.zip/i,".xml")}var l=new (a.html5(c)).setup(j);f.container=document.getElementById(f.id);f.setPlayer(l,"html5")}else{return null}};this.supportsConfig=function(){var h=document.createElement("video");if(!!h.canPlayType){if(b){var k=a.utils.getFirstPlaylistItemFromConfig(b);if(typeof k.file=="undefined"&&typeof k.levels=="undefined"){return true}else{if(k.file){return html5CanPlay(h,k.file,k.provider,k.playlistfile)}else{if(k.levels&&k.levels.length){for(var j=0;j<k.levels.length;j++){if(k.levels[j].file&&html5CanPlay(h,k.levels[j].file,k.provider,k.playlistfile)){return true}}}}}}else{return true}}return false};html5CanPlay=function(j,i,k,h){if(h){return false}if(k&&k=="youtube"){return true}if(k&&k!="video"&&k!="http"&&k!="sound"){return false}var l=a.utils.extension(i);if(!a.utils.exists(l)||!a.utils.exists(a.utils.extensionmap[l])){return true}if(!a.utils.exists(a.utils.extensionmap[l].html5)){return false}if(a.utils.isLegacyAndroid()&&l.match(/m4v|mp4/)){return true}return browserCanPlay(j,a.utils.extensionmap[l].html5)};browserCanPlay=function(i,h){if(!h){return true}if(i.canPlayType(h)){return true}else{if(h=="audio/mp3"&&navigator.userAgent.match(/safari/i)){return i.canPlayType("audio/mpeg")}else{return false}}}}})(jwplayer);(function(a){a.embed.logo=function(l,k,d){var i={prefix:"http://l.longtailvideo.com/"+k+"/",file:"logo.png",link:"http://www.longtailvideo.com/players/jw-flv-player/",margin:8,out:0.5,over:1,timeout:5,hide:false,position:"bottom-left"};_css=a.utils.css;var b;var h;j();function j(){n();c();f()}function n(){if(i.prefix){var p=a.version.split(/\W/).splice(0,2).join("/");if(i.prefix.indexOf(p)<0){i.prefix+=p+"/"}}h=a.utils.extend({},i)}function o(){var r={border:"none",textDecoration:"none",position:"absolute",cursor:"pointer",zIndex:10};r.display=h.hide?"none":"block";var q=h.position.toLowerCase().split("-");for(var p in q){r[q[p]]=h.margin}return r}function c(){b=document.createElement("img");b.id=d+"_jwplayer_logo";b.style.display="none";b.onload=function(p){_css(b,o());e()};if(!h.file){return}if(h.file.indexOf("http://")===0){b.src=h.file}else{b.src=h.prefix+h.file}}if(!h.file){return}function f(){if(h.link){b.onmouseover=g;b.onmouseout=e;b.onclick=m}else{this.mouseEnabled=false}}function m(p){if(typeof p!="undefined"){p.preventDefault();p.stopPropagation()}if(h.link){window.open(h.link,"_self")}return}function e(p){if(h.link){b.style.opacity=h.out}return}function g(p){if(h.hide){b.style.opacity=h.over}return}return b}})(jwplayer);(function(a){a.html5=function(b){var c=b;this.setup=function(d){a.utils.extend(this,new a.html5.api(c,d));return this};return this}})(jwplayer);(function(b){var d=b.utils;var c=d.css;b.html5.view=function(q,p,f){var t=q;var m=p;var w=f;var v;var g;var B;var r;var C;var o;var z;function y(){v=document.createElement("div");v.id=m.id;v.className=m.className;_videowrapper=document.createElement("div");_videowrapper.id=v.id+"_video_wrapper";m.id=v.id+"_video";c(v,{position:"relative",height:w.height,width:w.width,padding:0,backgroundColor:D(),zIndex:0});function D(){if(t.skin.getComponentSettings("display")&&t.skin.getComponentSettings("display").backgroundcolor){return t.skin.getComponentSettings("display").backgroundcolor}return parseInt("000000",16)}c(m,{width:w.width,height:w.height,top:0,left:0,zIndex:1,margin:"auto",display:"block"});c(_videowrapper,{overflow:"hidden",position:"absolute",top:0,left:0,bottom:0,right:0});d.wrap(m,v);d.wrap(m,_videowrapper);r=document.createElement("div");r.id=v.id+"_displayarea";v.appendChild(r)}function j(){for(var D=0;D<w.plugins.order.length;D++){var E=w.plugins.order[D];if(d.exists(w.plugins.object[E].getDisplayElement)){w.plugins.object[E].height=d.parseDimension(w.plugins.object[E].getDisplayElement().style.height);w.plugins.object[E].width=d.parseDimension(w.plugins.object[E].getDisplayElement().style.width);w.plugins.config[E].currentPosition=w.plugins.config[E].position}}u()}function l(D){c(r,{display:w.getMedia().hasChrome()?"none":"block"})}function u(E){var G=w.getMedia()?w.getMedia().getDisplayElement():null;if(d.exists(G)){if(z!=G){if(z&&z.parentNode){z.parentNode.replaceChild(G,z)}z=G}for(var D=0;D<w.plugins.order.length;D++){var F=w.plugins.order[D];if(d.exists(w.plugins.object[F].getDisplayElement)){if(w.getMedia().hasChrome()){w.plugins.config[F].currentPosition=b.html5.view.positions.NONE}else{w.plugins.config[F].currentPosition=w.plugins.config[F].position}}}}i(w.width,w.height)}this.setup=function(){if(w&&w.getMedia()){m=w.getMedia().getDisplayElement()}y();j();t.jwAddEventListener(b.api.events.JWPLAYER_PLAYER_STATE,l);t.jwAddEventListener(b.api.events.JWPLAYER_MEDIA_LOADED,u);t.jwAddEventListener(b.api.events.JWPLAYER_MEDIA_META,function(){x()});var D;if(d.exists(window.onresize)){D=window.onresize}window.onresize=function(E){if(d.exists(D)){try{D(E)}catch(G){}}if(t.jwGetFullscreen()){var F=document.body.getBoundingClientRect();w.width=Math.abs(F.left)+Math.abs(F.right);w.height=window.innerHeight}i(w.width,w.height)}};function h(D){switch(D.keyCode){case 27:if(t.jwGetFullscreen()){t.jwSetFullscreen(false)}break;case 32:if(t.jwGetState()!=b.api.events.state.IDLE&&t.jwGetState()!=b.api.events.state.PAUSED){t.jwPause()}else{t.jwPlay()}break}}function i(G,D){if(v.style.display=="none"){return}var F=[].concat(w.plugins.order);F.reverse();C=F.length+2;if(!w.fullscreen){w.width=G;w.height=D;g=G;B=D;c(r,{top:0,bottom:0,left:0,right:0,width:G,height:D});c(v,{height:B,width:g});var E=n(s,F);if(E.length>0){C+=E.length;n(k,E,true)}}else{if(navigator.vendor.indexOf("Apple")!==0){n(A,F,true)}}x()}function n(I,F,G){var E=[];for(var D=0;D<F.length;D++){var J=F[D];if(d.exists(w.plugins.object[J].getDisplayElement)){if(w.plugins.config[J].currentPosition!=b.html5.view.positions.NONE){var H=I(J,C--);if(!H){E.push(J)}else{w.plugins.object[J].resize(H.width,H.height);if(G){delete H.width;delete H.height}c(w.plugins.object[J].getDisplayElement(),H)}}else{c(w.plugins.object[J].getDisplayElement(),{display:"none"})}}}return E}function s(E,F){if(d.exists(w.plugins.object[E].getDisplayElement)){if(w.plugins.config[E].position&&a(w.plugins.config[E].position)){if(!d.exists(w.plugins.object[E].getDisplayElement().parentNode)){v.appendChild(w.plugins.object[E].getDisplayElement())}var D=e(E);D.zIndex=F;return D}}return false}function k(F,G){if(!d.exists(w.plugins.object[F].getDisplayElement().parentNode)){r.appendChild(w.plugins.object[F].getDisplayElement())}var D=w.width,E=w.height;if(typeof w.width=="string"&&w.width.lastIndexOf("%")>-1){percentage=parseFloat(w.width.substring(0,w.width.lastIndexOf("%")))/100;D=Math.round(window.innerWidth*percentage)}if(typeof w.height=="string"&&w.height.lastIndexOf("%")>-1){percentage=parseFloat(w.height.substring(0,w.height.lastIndexOf("%")))/100;E=Math.round(window.innerHeight*percentage)}return{position:"absolute",width:(D-d.parseDimension(r.style.left)-d.parseDimension(r.style.right)),height:(E-d.parseDimension(r.style.top)-d.parseDimension(r.style.bottom)),zIndex:G}}function A(D,E){return{position:"fixed",width:w.width,height:w.height,zIndex:E}}function x(){if(!d.exists(w.getMedia())){return}r.style.position="absolute";var F=w.getMedia().getDisplayElement();if(F&&F.tagName.toLowerCase()=="video"){F.style.position="absolute";var D,G;if(r.style.width.toString().lastIndexOf("%")>-1||r.style.width.toString().lastIndexOf("%")>-1){var E=r.getBoundingClientRect();D=Math.abs(E.left)+Math.abs(E.right);G=Math.abs(E.top)+Math.abs(E.bottom)}else{D=d.parseDimension(r.style.width);G=d.parseDimension(r.style.height)}if(F.parentNode){F.parentNode.style.left=r.style.left;F.parentNode.style.top=r.style.top}d.stretch(t.jwGetStretching(),F,D,G,F.videoWidth?F.videoWidth:400,F.videoHeight?F.videoHeight:300)}else{w.getMedia().resize(d.parseDimension(r.style.width),d.parseDimension(r.style.height))}}function e(E){var F={position:"absolute",margin:0,padding:0,top:null};var D=w.plugins.config[E].currentPosition.toLowerCase();switch(D.toUpperCase()){case b.html5.view.positions.TOP:F.top=d.parseDimension(r.style.top);F.left=d.parseDimension(r.style.left);F.width=g-d.parseDimension(r.style.left)-d.parseDimension(r.style.right);F.height=w.plugins.object[E].height;r.style[D]=d.parseDimension(r.style[D])+w.plugins.object[E].height+"px";r.style.height=d.parseDimension(r.style.height)-F.height+"px";break;case b.html5.view.positions.RIGHT:F.top=d.parseDimension(r.style.top);F.right=d.parseDimension(r.style.right);F.width=w.plugins.object[E].width;F.height=B-d.parseDimension(r.style.top)-d.parseDimension(r.style.bottom);r.style[D]=d.parseDimension(r.style[D])+w.plugins.object[E].width+"px";r.style.width=d.parseDimension(r.style.width)-F.width+"px";break;case b.html5.view.positions.BOTTOM:F.bottom=d.parseDimension(r.style.bottom);F.left=d.parseDimension(r.style.left);F.width=g-d.parseDimension(r.style.left)-d.parseDimension(r.style.right);F.height=w.plugins.object[E].height;r.style[D]=d.parseDimension(r.style[D])+w.plugins.object[E].height+"px";r.style.height=d.parseDimension(r.style.height)-F.height+"px";break;case b.html5.view.positions.LEFT:F.top=d.parseDimension(r.style.top);F.left=d.parseDimension(r.style.left);F.width=w.plugins.object[E].width;F.height=B-d.parseDimension(r.style.top)-d.parseDimension(r.style.bottom);r.style[D]=d.parseDimension(r.style[D])+w.plugins.object[E].width+"px";r.style.width=d.parseDimension(r.style.width)-F.width+"px";break;default:break}return F}this.resize=i;this.fullscreen=function(G){if(navigator&&navigator.vendor&&navigator.vendor.indexOf("Apple")===0){if(w.getMedia().getDisplayElement().webkitSupportsFullscreen){if(G){try{w.getMedia().getDisplayElement().webkitEnterFullscreen()}catch(F){}}else{try{w.getMedia().getDisplayElement().webkitExitFullscreen()}catch(F){}}}}else{if(G){document.onkeydown=h;clearInterval(o);var E=document.body.getBoundingClientRect();w.width=Math.abs(E.left)+Math.abs(E.right);w.height=window.innerHeight;var D={position:"fixed",width:"100%",height:"100%",top:0,left:0,zIndex:2147483000};c(v,D);D.zIndex=1;c(w.getMedia().getDisplayElement(),D);D.zIndex=2;c(r,D)}else{document.onkeydown="";w.width=g;w.height=B;c(v,{position:"relative",height:w.height,width:w.width,zIndex:0})}i(w.width,w.height)}}};function a(e){return([b.html5.view.positions.TOP,b.html5.view.positions.RIGHT,b.html5.view.positions.BOTTOM,b.html5.view.positions.LEFT].toString().indexOf(e.toUpperCase())>-1)}b.html5.view.positions={TOP:"TOP",RIGHT:"RIGHT",BOTTOM:"BOTTOM",LEFT:"LEFT",OVER:"OVER",NONE:"NONE"}})(jwplayer);(function(a){var b={backgroundcolor:"",margin:10,font:"Arial,sans-serif",fontsize:10,fontcolor:parseInt("000000",16),fontstyle:"normal",fontweight:"bold",buttoncolor:parseInt("ffffff",16),position:a.html5.view.positions.BOTTOM,idlehide:false,layout:{left:{position:"left",elements:[{name:"play",type:"button"},{name:"divider",type:"divider"},{name:"prev",type:"button"},{name:"divider",type:"divider"},{name:"next",type:"button"},{name:"divider",type:"divider"},{name:"elapsed",type:"text"}]},center:{position:"center",elements:[{name:"time",type:"slider"}]},right:{position:"right",elements:[{name:"duration",type:"text"},{name:"blank",type:"button"},{name:"divider",type:"divider"},{name:"mute",type:"button"},{name:"volume",type:"slider"},{name:"divider",type:"divider"},{name:"fullscreen",type:"button"}]}}};_utils=a.utils;_css=_utils.css;_hide=function(c){_css(c,{display:"none"})};_show=function(c){_css(c,{display:"block"})};a.html5.controlbar=function(k,V){var j=k;var D=_utils.extend({},b,j.skin.getComponentSettings("controlbar"),V);if(D.position==a.html5.view.positions.NONE||typeof a.html5.view.positions[D.position]=="undefined"){return}if(_utils.mapLength(j.skin.getComponentLayout("controlbar"))>0){D.layout=j.skin.getComponentLayout("controlbar")}var ac;var P;var ab;var E;var v="none";var g;var i;var ad;var f;var e;var y;var Q={};var p=false;var c={};var Y;var h=false;var o;var d;var S=false;var G=false;var W=new a.html5.eventdispatcher();_utils.extend(this,W);function J(){if(!Y){Y=j.skin.getSkinElement("controlbar","background");if(!Y){Y={width:0,height:0,src:null}}}return Y}function N(){ab=0;E=0;P=0;if(!p){var ak={height:J().height,backgroundColor:D.backgroundcolor};ac=document.createElement("div");ac.id=j.id+"_jwplayer_controlbar";_css(ac,ak)}var aj=(j.skin.getSkinElement("controlbar","capLeft"));var ai=(j.skin.getSkinElement("controlbar","capRight"));if(aj){x("capLeft","left",false,ac)}var al={position:"absolute",height:J().height,left:(aj?aj.width:0),zIndex:0};Z("background",ac,al,"img");if(J().src){Q.background.src=J().src}al.zIndex=1;Z("elements",ac,al);if(ai){x("capRight","right",false,ac)}}this.getDisplayElement=function(){return ac};this.resize=function(ak,ai){_utils.cancelAnimation(ac);document.getElementById(j.id).onmousemove=A;e=ak;y=ai;if(G!=j.jwGetFullscreen()){G=j.jwGetFullscreen();d=undefined}var aj=w();A();I({id:j.id,duration:ad,position:i});u({id:j.id,bufferPercent:f});return aj};this.show=function(){if(h){h=false;_show(ac);T()}};this.hide=function(){if(!h){h=true;_hide(ac);aa()}};function q(){var aj=["timeSlider","volumeSlider","timeSliderRail","volumeSliderRail"];for(var ak in aj){var ai=aj[ak];if(typeof Q[ai]!="undefined"){c[ai]=Q[ai].getBoundingClientRect()}}}function A(ai){if(h){return}if(D.position==a.html5.view.positions.OVER||j.jwGetFullscreen()){clearTimeout(o);switch(j.jwGetState()){case a.api.events.state.PLAYING:case a.api.events.state.BUFFERING:U();o=setTimeout(function(){z()},2000);break;default:if(!D.idlehide||_utils.exists(ai)){U()}if(D.idlehide){o=setTimeout(function(){z()},2000)}break}}}function z(ai){aa();_utils.cancelAnimation(ac);_utils.fadeTo(ac,0,0.1,1,0)}function U(){T();_utils.cancelAnimation(ac);_utils.fadeTo(ac,1,0,1,0)}function H(ai){return function(){if(S&&d!=ai){d=ai;W.sendEvent(ai,{component:"controlbar",boundingRect:O()})}}}var T=H(a.api.events.JWPLAYER_COMPONENT_SHOW);var aa=H(a.api.events.JWPLAYER_COMPONENT_HIDE);function O(){if(D.position==a.html5.view.positions.OVER||j.jwGetFullscreen()){return _utils.getDimensions(ac)}else{return{x:0,y:0,width:0,height:0}}}function Z(am,al,ak,ai){var aj;if(!p){if(!ai){ai="div"}aj=document.createElement(ai);Q[am]=aj;aj.id=ac.id+"_"+am;al.appendChild(aj)}else{aj=document.getElementById(ac.id+"_"+am)}if(_utils.exists(ak)){_css(aj,ak)}return aj}function M(){ah(D.layout.left);ah(D.layout.right,-1);ah(D.layout.center)}function ah(al,ai){var am=al.position=="right"?"right":"left";var ak=_utils.extend([],al.elements);if(_utils.exists(ai)){ak.reverse()}for(var aj=0;aj<ak.length;aj++){C(ak[aj],am)}}function K(){return P++}function C(am,ao){var al,aj,ak,ai,aq;if(am.type=="divider"){x("divider"+K(),ao,true,undefined,undefined,am.width,am.element);return}switch(am.name){case"play":x("playButton",ao,false);x("pauseButton",ao,true);R("playButton","jwPlay");R("pauseButton","jwPause");break;case"prev":x("prevButton",ao,true);R("prevButton","jwPlaylistPrev");break;case"stop":x("stopButton",ao,true);R("stopButton","jwStop");break;case"next":x("nextButton",ao,true);R("nextButton","jwPlaylistNext");break;case"elapsed":x("elapsedText",ao,true);break;case"time":aj=!_utils.exists(j.skin.getSkinElement("controlbar","timeSliderCapLeft"))?0:j.skin.getSkinElement("controlbar","timeSliderCapLeft").width;ak=!_utils.exists(j.skin.getSkinElement("controlbar","timeSliderCapRight"))?0:j.skin.getSkinElement("controlbar","timeSliderCapRight").width;al=ao=="left"?aj:ak;ai=j.skin.getSkinElement("controlbar","timeSliderRail").width+aj+ak;aq={height:J().height,position:"absolute",top:0,width:ai};aq[ao]=ao=="left"?ab:E;var an=Z("timeSlider",Q.elements,aq);x("timeSliderCapLeft",ao,true,an,ao=="left"?0:al);x("timeSliderRail",ao,false,an,al);x("timeSliderBuffer",ao,false,an,al);x("timeSliderProgress",ao,false,an,al);x("timeSliderThumb",ao,false,an,al);x("timeSliderCapRight",ao,true,an,ao=="right"?0:al);X("time");break;case"fullscreen":x("fullscreenButton",ao,false);x("normalscreenButton",ao,true);R("fullscreenButton","jwSetFullscreen",true);R("normalscreenButton","jwSetFullscreen",false);break;case"volume":aj=!_utils.exists(j.skin.getSkinElement("controlbar","volumeSliderCapLeft"))?0:j.skin.getSkinElement("controlbar","volumeSliderCapLeft").width;ak=!_utils.exists(j.skin.getSkinElement("controlbar","volumeSliderCapRight"))?0:j.skin.getSkinElement("controlbar","volumeSliderCapRight").width;al=ao=="left"?aj:ak;ai=j.skin.getSkinElement("controlbar","volumeSliderRail").width+aj+ak;aq={height:J().height,position:"absolute",top:0,width:ai};aq[ao]=ao=="left"?ab:E;var ap=Z("volumeSlider",Q.elements,aq);x("volumeSliderCapLeft",ao,true,ap,ao=="left"?0:al);x("volumeSliderRail",ao,true,ap,al);x("volumeSliderProgress",ao,false,ap,al);x("volumeSliderCapRight",ao,true,ap,ao=="right"?0:al);X("volume");break;case"mute":x("muteButton",ao,false);x("unmuteButton",ao,true);R("muteButton","jwSetMute",true);R("unmuteButton","jwSetMute",false);break;case"duration":x("durationText",ao,true);break}}function x(al,ao,aj,ar,am,ai,ak){if(_utils.exists(j.skin.getSkinElement("controlbar",al))||al.indexOf("Text")>0||al.indexOf("divider")===0){var an={height:J().height,position:"absolute",display:"block",top:0};if((al.indexOf("next")===0||al.indexOf("prev")===0)&&j.jwGetPlaylist().length<2){aj=false;an.display="none"}var at;if(al.indexOf("Text")>0){al.innerhtml="00:00";an.font=D.fontsize+"px/"+(J().height+1)+"px "+D.font;an.color=D.fontcolor;an.textAlign="center";an.fontWeight=D.fontweight;an.fontStyle=D.fontstyle;an.cursor="default";at=14+3*D.fontsize}else{if(al.indexOf("divider")===0){if(ai){if(!isNaN(parseInt(ai))){at=parseInt(ai)}}else{if(ak){var ap=j.skin.getSkinElement("controlbar",ak);if(ap){an.background="url("+ap.src+") repeat-x center left";at=ap.width}}else{an.background="url("+j.skin.getSkinElement("controlbar","divider").src+") repeat-x center left";at=j.skin.getSkinElement("controlbar","divider").width}}}else{an.background="url("+j.skin.getSkinElement("controlbar",al).src+") repeat-x center left";at=j.skin.getSkinElement("controlbar",al).width}}if(ao=="left"){an.left=isNaN(am)?ab:am;if(aj){ab+=at}}else{if(ao=="right"){an.right=isNaN(am)?E:am;if(aj){E+=at}}}if(_utils.typeOf(ar)=="undefined"){ar=Q.elements}an.width=at;if(p){_css(Q[al],an)}else{var aq=Z(al,ar,an);if(_utils.exists(j.skin.getSkinElement("controlbar",al+"Over"))){aq.onmouseover=function(au){aq.style.backgroundImage=["url(",j.skin.getSkinElement("controlbar",al+"Over").src,")"].join("")};aq.onmouseout=function(au){aq.style.backgroundImage=["url(",j.skin.getSkinElement("controlbar",al).src,")"].join("")}}}}}function F(){j.jwAddEventListener(a.api.events.JWPLAYER_PLAYLIST_LOADED,B);j.jwAddEventListener(a.api.events.JWPLAYER_PLAYLIST_ITEM,s);j.jwAddEventListener(a.api.events.JWPLAYER_MEDIA_BUFFER,u);j.jwAddEventListener(a.api.events.JWPLAYER_PLAYER_STATE,r);j.jwAddEventListener(a.api.events.JWPLAYER_MEDIA_TIME,I);j.jwAddEventListener(a.api.events.JWPLAYER_MEDIA_MUTE,ag);j.jwAddEventListener(a.api.events.JWPLAYER_MEDIA_VOLUME,l);j.jwAddEventListener(a.api.events.JWPLAYER_MEDIA_COMPLETE,L)}function B(){N();M();w();ae()}function s(ai){ad=j.jwGetPlaylist()[ai.index].duration;I({id:j.id,duration:ad,position:0});u({id:j.id,bufferProgress:0})}function ae(){I({id:j.id,duration:j.jwGetDuration(),position:0});u({id:j.id,bufferProgress:0});ag({id:j.id,mute:j.jwGetMute()});r({id:j.id,newstate:a.api.events.state.IDLE});l({id:j.id,volume:j.jwGetVolume()})}function R(ak,al,aj){if(p){return}if(_utils.exists(j.skin.getSkinElement("controlbar",ak))){var ai=Q[ak];if(_utils.exists(ai)){_css(ai,{cursor:"pointer"});if(al=="fullscreen"){ai.onmouseup=function(am){am.stopPropagation();j.jwSetFullscreen(!j.jwGetFullscreen())}}else{ai.onmouseup=function(am){am.stopPropagation();if(_utils.exists(aj)){j[al](aj)}else{j[al]()}}}}}}function X(ai){if(p){return}var aj=Q[ai+"Slider"];_css(Q.elements,{cursor:"pointer"});_css(aj,{cursor:"pointer"});aj.onmousedown=function(ak){v=ai};aj.onmouseup=function(ak){ak.stopPropagation();af(ak.pageX)};aj.onmousemove=function(ak){if(v=="time"){g=true;var al=ak.pageX-c[ai+"Slider"].left-window.pageXOffset;_css(Q.timeSliderThumb,{left:al})}}}function af(aj){g=false;var ai;if(v=="time"){ai=aj-c.timeSliderRail.left+window.pageXOffset;var al=ai/c.timeSliderRail.width*ad;if(al<0){al=0}else{if(al>ad){al=ad-3}}if(j.jwGetState()==a.api.events.state.PAUSED||j.jwGetState()==a.api.events.state.IDLE){j.jwPlay()}j.jwSeek(al)}else{if(v=="volume"){ai=aj-c.volumeSliderRail.left-window.pageXOffset;var ak=Math.round(ai/c.volumeSliderRail.width*100);if(ak<0){ak=0}else{if(ak>100){ak=100}}if(j.jwGetMute()){j.jwSetMute(false)}j.jwSetVolume(ak)}}v="none"}function u(aj){if(_utils.exists(aj.bufferPercent)){f=aj.bufferPercent}if(c.timeSliderRail){var ak=c.timeSliderRail.width;var ai=isNaN(Math.round(ak*f/100))?0:Math.round(ak*f/100);_css(Q.timeSliderBuffer,{width:ai})}}function ag(ai){if(ai.mute){_hide(Q.muteButton);_show(Q.unmuteButton);_hide(Q.volumeSliderProgress)}else{_show(Q.muteButton);_hide(Q.unmuteButton);_show(Q.volumeSliderProgress)}}function r(ai){if(ai.newstate==a.api.events.state.BUFFERING||ai.newstate==a.api.events.state.PLAYING){_show(Q.pauseButton);_hide(Q.playButton)}else{_hide(Q.pauseButton);_show(Q.playButton)}A();if(ai.newstate==a.api.events.state.IDLE){_hide(Q.timeSliderBuffer);_hide(Q.timeSliderProgress);_hide(Q.timeSliderThumb);I({id:j.id,duration:j.jwGetDuration(),position:0})}else{_show(Q.timeSliderBuffer);if(ai.newstate!=a.api.events.state.BUFFERING){_show(Q.timeSliderProgress);_show(Q.timeSliderThumb)}}}function L(ai){u({bufferPercent:0});I(_utils.extend(ai,{position:0,duration:ad}))}function I(al){if(_utils.exists(al.position)){i=al.position}if(_utils.exists(al.duration)){ad=al.duration}var aj=(i===ad===0)?0:i/ad;var am=c.timeSliderRail;if(am){var ai=isNaN(Math.round(am.width*aj))?0:Math.round(am.width*aj);var ak=ai;if(Q.timeSliderProgress){Q.timeSliderProgress.style.width=ai+"px";if(!g){if(Q.timeSliderThumb){Q.timeSliderThumb.style.left=ak+"px"}}}}if(Q.durationText){Q.durationText.innerHTML=n(ad)}if(Q.elapsedText){Q.elapsedText.innerHTML=n(i)}}function n(ai){str="00:00";if(ai>0){str=Math.floor(ai/60)<10?"0"+Math.floor(ai/60)+":":Math.floor(ai/60)+":";str+=Math.floor(ai%60)<10?"0"+Math.floor(ai%60):Math.floor(ai%60)}return str}function m(){var am,aj;var ak=document.getElementById(ac.id+"_elements");if(!ak){return}var al=ak.childNodes;for(var ai in ak.childNodes){if(isNaN(parseInt(ai,10))){continue}if(al[ai].id.indexOf(ac.id+"_divider")===0&&aj&&aj.id.indexOf(ac.id+"_divider")===0&&al[ai].style.backgroundImage==aj.style.backgroundImage){al[ai].style.display="none"}else{if(al[ai].id.indexOf(ac.id+"_divider")===0&&am&&am.style.display!="none"){al[ai].style.display="block"}}if(al[ai].style.display!="none"){aj=al[ai]}am=al[ai]}}function w(){m();if(j.jwGetFullscreen()){_show(Q.normalscreenButton);_hide(Q.fullscreenButton)}else{_hide(Q.normalscreenButton);_show(Q.fullscreenButton)}var aj={width:e};var ai={};if(D.position==a.html5.view.positions.OVER||j.jwGetFullscreen()){aj.left=D.margin;aj.width-=2*D.margin;aj.top=y-J().height-D.margin;aj.height=J().height}var al=j.skin.getSkinElement("controlbar","capLeft");var ak=j.skin.getSkinElement("controlbar","capRight");ai.left=al?al.width:0;ai.width=aj.width-ai.left-(ak?ak.width:0);var am=!_utils.exists(j.skin.getSkinElement("controlbar","timeSliderCapLeft"))?0:j.skin.getSkinElement("controlbar","timeSliderCapLeft").width;_css(Q.timeSliderRail,{width:(ai.width-ab-E),left:am});if(_utils.exists(Q.timeSliderCapRight)){_css(Q.timeSliderCapRight,{left:am+(ai.width-ab-E)})}_css(ac,aj);_css(Q.elements,ai);_css(Q.background,ai);q();return aj}function l(am){if(_utils.exists(Q.volumeSliderRail)){var ak=isNaN(am.volume/100)?1:am.volume/100;var al=_utils.parseDimension(Q.volumeSliderRail.style.width);var ai=isNaN(Math.round(al*ak))?0:Math.round(al*ak);var an=_utils.parseDimension(Q.volumeSliderRail.style.right);var aj=(!_utils.exists(j.skin.getSkinElement("controlbar","volumeSliderCapLeft")))?0:j.skin.getSkinElement("controlbar","volumeSliderCapLeft").width;_css(Q.volumeSliderProgress,{width:ai,left:aj});if(_utils.exists(Q.volumeSliderCapLeft)){_css(Q.volumeSliderCapLeft,{left:0})}}}function t(){N();M();q();p=true;F();D.idlehide=(D.idlehide.toString().toLowerCase()=="true");if(D.position==a.html5.view.positions.OVER&&D.idlehide){ac.style.opacity=0;S=true}else{setTimeout((function(){S=true;T()}),1)}ae()}t();return this}})(jwplayer);(function(b){var a=["width","height","state","playlist","item","position","buffer","duration","volume","mute","fullscreen"];var c=b.utils;b.html5.controller=function(v,t,g,s){var y=v;var A=g;var f=s;var m=t;var C=true;var d=-1;var w=c.exists(A.config.debug)&&(A.config.debug.toString().toLowerCase()=="console");var k=new b.html5.eventdispatcher(m.id,w);c.extend(this,k);function o(F){k.sendEvent(F.type,F)}A.addGlobalListener(o);A.addEventListener(b.api.events.JWPLAYER_MEDIA_BUFFER_FULL,function(){A.getMedia().play()});A.addEventListener(b.api.events.JWPLAYER_MEDIA_TIME,function(F){if(F.position>=A.playlist[A.item].start&&d>=0){A.playlist[A.item].start=d;d=-1}});A.addEventListener(b.api.events.JWPLAYER_MEDIA_COMPLETE,function(F){setTimeout(p,25)});function r(){try{if(A.playlist[A.item].levels[0].file.length>0){if(C||A.state==b.api.events.state.IDLE){A.getMedia().load(A.playlist[A.item]);C=false}else{if(A.state==b.api.events.state.PAUSED){A.getMedia().play()}}}return true}catch(F){k.sendEvent(b.api.events.JWPLAYER_ERROR,F)}return false}function D(){try{if(A.playlist[A.item].levels[0].file.length>0){switch(A.state){case b.api.events.state.PLAYING:case b.api.events.state.BUFFERING:A.getMedia().pause();break}}return true}catch(F){k.sendEvent(b.api.events.JWPLAYER_ERROR,F)}return false}function z(F){try{if(A.playlist[A.item].levels[0].file.length>0){if(typeof F!="number"){F=parseFloat(F)}switch(A.state){case b.api.events.state.IDLE:if(d<0){d=A.playlist[A.item].start;A.playlist[A.item].start=F}r();break;case b.api.events.state.PLAYING:case b.api.events.state.PAUSED:case b.api.events.state.BUFFERING:A.seek(F);break}}return true}catch(G){k.sendEvent(b.api.events.JWPLAYER_ERROR,G)}return false}function l(F){if(!c.exists(F)){F=true}try{A.getMedia().stop(F);return true}catch(G){k.sendEvent(b.api.events.JWPLAYER_ERROR,G)}return false}function i(){try{if(A.playlist[A.item].levels[0].file.length>0){if(A.config.shuffle){e(u())}else{if(A.item+1==A.playlist.length){e(0)}else{e(A.item+1)}}}if(A.state!=b.api.events.state.IDLE){var G=A.state;A.state=b.api.events.state.IDLE;k.sendEvent(b.api.events.JWPLAYER_PLAYER_STATE,{oldstate:G,newstate:b.api.events.state.IDLE})}r();return true}catch(F){k.sendEvent(b.api.events.JWPLAYER_ERROR,F)}return false}function h(){try{if(A.playlist[A.item].levels[0].file.length>0){if(A.config.shuffle){e(u())}else{if(A.item===0){e(A.playlist.length-1)}else{e(A.item-1)}}}if(A.state!=b.api.events.state.IDLE){var G=A.state;A.state=b.api.events.state.IDLE;k.sendEvent(b.api.events.JWPLAYER_PLAYER_STATE,{oldstate:G,newstate:b.api.events.state.IDLE})}r();return true}catch(F){k.sendEvent(b.api.events.JWPLAYER_ERROR,F)}return false}function u(){var F=null;if(A.playlist.length>1){while(!c.exists(F)){F=Math.floor(Math.random()*A.playlist.length);if(F==A.item){F=null}}}else{F=0}return F}function q(G){try{if(A.playlist[G].levels[0].file.length>0){var H=A.state;if(H!==b.api.events.state.IDLE){if(A.playlist[A.item].provider==A.playlist[G].provider){l(false)}else{l()}}e(G);r()}return true}catch(F){k.sendEvent(b.api.events.JWPLAYER_ERROR,F)}return false}function e(F){A.item=F;C=true;A.setActiveMediaProvider(A.playlist[A.item]);k.sendEvent(b.api.events.JWPLAYER_PLAYLIST_ITEM,{index:F})}function B(G){try{switch(typeof(G)){case"number":A.getMedia().volume(G);break;case"string":A.getMedia().volume(parseInt(G,10));break}return true}catch(F){k.sendEvent(b.api.events.JWPLAYER_ERROR,F)}return false}function n(G){try{if(typeof G=="undefined"){A.getMedia().mute(!A.mute)}else{if(G.toString().toLowerCase()=="true"){A.getMedia().mute(true)}else{A.getMedia().mute(false)}}return true}catch(F){k.sendEvent(b.api.events.JWPLAYER_ERROR,F)}return false}function j(G,F){try{A.width=G;A.height=F;f.resize(G,F);k.sendEvent(b.api.events.JWPLAYER_RESIZE,{width:A.width,height:A.height});return true}catch(H){k.sendEvent(b.api.events.JWPLAYER_ERROR,H)}return false}function x(G){try{if(typeof G=="undefined"){A.fullscreen=!A.fullscreen;f.fullscreen(!A.fullscreen)}else{if(G.toString().toLowerCase()=="true"){A.fullscreen=true;f.fullscreen(true)}else{A.fullscreen=false;f.fullscreen(false)}}k.sendEvent(b.api.events.JWPLAYER_RESIZE,{width:A.width,height:A.height});k.sendEvent(b.api.events.JWPLAYER_FULLSCREEN,{fullscreen:G});return true}catch(F){k.sendEvent(b.api.events.JWPLAYER_ERROR,F)}return false}function E(F){try{l();A.loadPlaylist(F);e(A.item);return true}catch(G){k.sendEvent(b.api.events.JWPLAYER_ERROR,G)}return false}b.html5.controller.repeatoptions={LIST:"LIST",ALWAYS:"ALWAYS",SINGLE:"SINGLE",NONE:"NONE"};function p(){switch(A.config.repeat.toUpperCase()){case b.html5.controller.repeatoptions.SINGLE:r();break;case b.html5.controller.repeatoptions.ALWAYS:if(A.item==A.playlist.length-1&&!A.config.shuffle){q(0)}else{i()}break;case b.html5.controller.repeatoptions.LIST:if(A.item==A.playlist.length-1&&!A.config.shuffle){l();e(0)}else{i()}break;default:l();break}}this.play=r;this.pause=D;this.seek=z;this.stop=l;this.next=i;this.prev=h;this.item=q;this.setVolume=B;this.setMute=n;this.resize=j;this.setFullscreen=x;this.load=E}})(jwplayer);(function(a){a.html5.defaultSkin=function(){this.text='<?xml version="1.0" ?><skin author="LongTail Video" name="Five" version="1.0"><settings><setting name="backcolor" value="0xFFFFFF"/><setting name="frontcolor" value="0x000000"/><setting name="lightcolor" value="0x000000"/><setting name="screencolor" value="0x000000"/></settings><components><component name="controlbar"><settings><setting name="margin" value="20"/><setting name="fontsize" value="11"/></settings><elements><element name="background" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAIAAABvFaqvAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAFJJREFUeNrslLENwAAIwxLU/09j5AiOgD5hVQzNAVY8JK4qEfHMIKBnd2+BQlBINaiRtL/aV2rdzYBsM6CIONbI1NZENTr3RwdB2PlnJgJ6BRgA4hwu5Qg5iswAAAAASUVORK5CYII="/><element name="capLeft" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAYCAIAAAC0rgCNAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAD5JREFUeNosi8ENACAMAgnuv14H0Z8asI19XEjhOiKCMmibVgJTUt7V6fe9KXOtSQCfctJHu2q3/ot79hNgANc2OTz9uTCCAAAAAElFTkSuQmCC"/><element name="capRight" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAYCAIAAAC0rgCNAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAD5JREFUeNosi8ENACAMAgnuv14H0Z8asI19XEjhOiKCMmibVgJTUt7V6fe9KXOtSQCfctJHu2q3/ot79hNgANc2OTz9uTCCAAAAAElFTkSuQmCC"/><element name="divider" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAYCAIAAAC0rgCNAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAD5JREFUeNosi8ENACAMAgnuv14H0Z8asI19XEjhOiKCMmibVgJTUt7V6fe9KXOtSQCfctJHu2q3/ot79hNgANc2OTz9uTCCAAAAAElFTkSuQmCC"/><element name="playButton" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAYCAYAAAAVibZIAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAEhJREFUeNpiYqABYBo1dNRQ+hr6H4jvA3E8NS39j4SpZvh/LJig4YxEGEqy3kET+w+AOGFQRhTJhrEQkGcczfujhg4CQwECDADpTRWU/B3wHQAAAABJRU5ErkJggg=="/><element name="pauseButton" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAYCAYAAAAVibZIAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAChJREFUeNpiYBgFo2DwA0YC8v/R1P4nRu+ooaOGUtnQUTAKhgIACDAAFCwQCfAJ4gwAAAAASUVORK5CYII="/><element name="prevButton" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAYCAYAAAAVibZIAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAEtJREFUeNpiYBgFo2Dog/9QDAPyQHweTYwiQ/2B+D0Wi8g2tB+JTdBQRiIMJVkvEy0iglhDF9Aq9uOpHVEwoE+NJDUKRsFgAAABBgDe2hqZcNNL0AAAAABJRU5ErkJggg=="/><element name="nextButton" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAYCAYAAAAVibZIAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAElJREFUeNpiYBgFo2Dog/9AfB6I5dHE/lNqKAi/B2J/ahsKw/3EGMpIhKEk66WJoaR6fz61IyqemhEFSlL61ExSo2AUDAYAEGAAiG4hj+5t7M8AAAAASUVORK5CYII="/><element name="timeSliderRail" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAADxJREFUeNpiYBgFo2AU0Bwwzluw+D8tLWARFhKiqQ9YuLg4aWsBGxs7bS1gZ6e5BWyjSX0UjIKhDgACDABlYQOGh5pYywAAAABJRU5ErkJggg=="/><element name="timeSliderBuffer" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAD1JREFUeNpiYBgFo2AU0Bww1jc0/aelBSz8/Pw09QELOzs7bS1gY2OjrQWsrKy09gHraFIfBaNgqAOAAAMAvy0DChXHsZMAAAAASUVORK5CYII="/><element name="timeSliderProgress" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAClJREFUeNpiYBgFo2AU0BwwAvF/WlrARGsfjFow8BaMglEwCugAAAIMAOHfAQunR+XzAAAAAElFTkSuQmCC"/><element name="timeSliderThumb" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAAICAYAAAA870V8AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAABZJREFUeNpiZICA/yCCiQEJUJcDEGAAY0gBD1/m7Q0AAAAASUVORK5CYII="/><element name="muteButton" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAYCAYAAADKx8xXAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAADFJREFUeNpiYBgFIw3MB+L/5Gj8j6yRiRTFyICJXHfTXyMLAXlGati4YDRFDj8AEGAABk8GSqqS4CoAAAAASUVORK5CYII="/><element name="unmuteButton" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAYCAYAAADKx8xXAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAD1JREFUeNpiYBgFgxz8p7bm+cQa+h8LHy7GhEcjIz4bmAjYykiun/8j0fakGPIfTfPgiSr6aB4FVAcAAQYAWdwR1G1Wd2gAAAAASUVORK5CYII="/><element name="volumeSliderRail" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAYCAYAAADkgu3FAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAGpJREFUeNpi/P//PwM9ABMDncCoRYPfIqqDZcuW1UPp/6AUDcNM1DQYKtRAlaAj1mCSLSLXYIIWUctgDItoZfDA5aOoqKhGEANIM9LVR7SymGDQUctikuOIXkFNdhHEOFrDjlpEd4sAAgwAriRMub95fu8AAAAASUVORK5CYII="/><element name="volumeSliderProgress" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAYCAYAAADkgu3FAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAFtJREFUeNpi/P//PwM9ABMDncCoRYPfIlqAeij9H5SiYZiqBqPTlFqE02BKLSLaYFItIttgQhZRzWB8FjENiuRJ7aAbsMQwYMl7wDIsWUUQ42gNO2oR3S0CCDAAKhKq6MLLn8oAAAAASUVORK5CYII="/><element name="fullscreenButton" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAE5JREFUeNpiYBgFo2DQA0YC8v/xqP1PjDlMRDrEgUgxkgHIlfZoriVGjmzLsLFHAW2D6D8eA/9Tw7L/BAwgJE90PvhPpNgoGAVDEQAEGAAMdhTyXcPKcAAAAABJRU5ErkJggg=="/><element name="normalscreenButton" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAEZJREFUeNpiYBgFo2DIg/9UUkOUAf8JiFFsyX88fJyAkcQgYMQjNkzBoAgiezyRbE+tFGSPxQJ7auYBmma0UTAKBhgABBgAJAEY6zON61sAAAAASUVORK5CYII="/></elements></component><component name="display"><elements><element name="background" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAEpJREFUeNrszwENADAIA7DhX8ENoBMZ5KR10EryckCJiIiIiIiIiIiIiIiIiIiIiIh8GmkRERERERERERERERERERERERGRHSPAAPlXH1phYpYaAAAAAElFTkSuQmCC"/><element name="playIcon" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAALdJREFUeNrs18ENgjAYhmFouDOCcQJGcARHgE10BDcgTOIosAGwQOuPwaQeuFRi2p/3Sb6EC5L3QCxZBgAAAOCorLW1zMn65TrlkH4NcV7QNcUQt7Gn7KIhxA+qNIR81spOGkL8oFJDyLJRdosqKDDkK+iX5+d7huzwM40xptMQMkjIOeRGo+VkEVvIPfTGIpKASfYIfT9iCHkHrBEzf4gcUQ56aEzuGK/mw0rHpy4AAACAf3kJMACBxjAQNRckhwAAAABJRU5ErkJggg=="/><element name="muteIcon" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAHJJREFUeNrs1jEOgCAMBVAg7t5/8qaoIy4uoobyXsLCxA+0NCUAAADGUWvdQoQ41x4ixNBB2hBvBskdD3w5ZCkl3+33VqI0kjBBlh9rp+uTcyOP33TnolfsU85XX3yIRpQph8ZQY3wTZtU5AACASA4BBgDHoVuY1/fvOQAAAABJRU5ErkJggg=="/><element name="errorIcon" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAWlJREFUeNrsl+1twjAQhsHq/7BBYQLYIBmBDcoGMAIjtBPQTcII2SDtBDBBwrU6pGsUO7YbO470PtKJkz9iH++d4ywWAAAAAABgljRNsyWr2bZzDuJG1rLdZhcMbTjrBCGDyUKsqQLFciJb9bSvuG/WagRVRUVUI6gqy5HVeKWfSgRyJruKIU//TrZTSn2nmlaXThrloi/v9F2STC1W4+Aw5cBzkquRc09bofFNc6YLxEON0VUZS5FPTftO49vMjRsIF3RhOGr7/D/pJw+FKU+q0vDyq8W42jCunDqI3LC5XxNj2wHLU1XjaRnb0Lhykhqhhd8MtSF5J9tbjCv4mXGvKJz/65FF/qJryyaaIvzP2QRxZTX2nTuXjvV/VPFSwyLnW7mpH99yTh1FEVro6JBSd40/pMrRdV8vPtcKl28T2pT8TnFZ4yNosct3Q0io6JfBiz1FlGdqVQH3VHnepAEAAAAAADDzEGAAcTwB10jWgxcAAAAASUVORK5CYII="/><element name="bufferIcon" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAuhJREFUeNrsWr9rU1EUznuNGqvFQh1ULOhiBx0KDtIuioO4pJuik3FxFfUPaAV1FTdx0Q5d2g4FFxehTnEpZHFoBy20tCIWtGq0TZP4HfkeHB5N8m6Sl/sa74XDybvv3vvOd8/Pe4lXrVZT3dD8VJc0B8QBcUAcEAfESktHGeR5XtMfqFQq/f92zPe/NbtGlKTdCY30kuxrpMGO94BlQCXs+rbh3ONgA6BlzP1p20d80gEI5hmA2A92Qua1Q2PtAFISM+bvjMG8U+Q7oA3rQGASwrYCU6WpNdLGYbA+Pq5jjXIiwi8EEa2UDbQSaKOIuV+SlkcCrfjY8XTI9EpKGwP0C2kru2hLtHqa4zoXtZRWyvi4CLwv9Opr6Hkn6A9HKgEANsQ1iqC3Ub/vRUk2JgmRkatK36kVrnt0qObunwUdUUMXMWYpakJsO5Am8tAw2GBIgwWA+G2S2dMpiw0gDioQRQJoKhRb1QiDwlHZUABYbaXWsm5ae6loTE4ZDxN4CZar8foVzOJ2iyZ2kWF3t7YIevffaMT5yJ70kQb2fQ1sE5SHr2wazs2wgMxgbsEKEAgxAvZUJbQLBGTSBMgNrncJbA6AljtS/eKDJ0Ez+DmrQEzXS2h1Ck25kAg0IZcUOaydCy4sYnN2fOA+2AP16gNoHALlQ+fwH7XO4CxLenUpgj4xr6ugY2roPMbMx+Xs18m/E8CVEIhxsNeg83XWOAN6grG3lGbk8uE5fr4B/WH3cJw+co/l9nTYsSGYCJ/lY5/qv0thn6nrIWmjeJcPSnWOeY++AkF8tpJHIMAUs/MaBBpj3znZfQo5psY+ZrG4gv5HickjEOymKjEeRpgyST6IuZcTcWbnjcgdPi5ghxciRKsl1lDSsgwA1i8fssonJgzmTSqfGUkCENndNdAL7PS6QQ7ZYISTo+1qq0LEWjTWcvY4isa4z+yfQB+7ooyHVg5RI7/i1Ijn/vnggDggDogD4oC00P4KMACd/juEHOrS4AAAAABJRU5ErkJggg=="/></elements></component><component name="dock"><elements><element name="button" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAFBJREFUeNrs0cEJACAQA8Eofu0fu/W6EM5ZSAFDRpKTBs00CQQEBAQEBAQEBAQEBAQEBATkK8iqbY+AgICAgICAgICAgICAgICAgIC86QowAG5PAQzEJ0lKAAAAAElFTkSuQmCC"/></elements></component><component name="playlist"><elements><element name="item" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAIAAAC1nk4lAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAHhJREFUeNrs2NEJwCAMBcBYuv/CFuIE9VN47WWCR7iocXR3pdWdGPqqwIoMjYfQeAiNh9B4JHc6MHQVHnjggQceeOCBBx77TifyeOY0iHi8DqIdEY8dD5cL094eePzINB5CO/LwcOTptNB4CP25L4TIbZzpU7UEGAA5wz1uF5rF9AAAAABJRU5ErkJggg=="/><element name="sliderRail" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAA8CAIAAADpFA0BAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAADhJREFUeNrsy6ENACAMAMHClp2wYxZLAg5Fcu9e3OjuOKqqfTMzbs14CIZhGIZhGIZhGP4VLwEGAK/BBnVFpB0oAAAAAElFTkSuQmCC"/><element name="sliderThumb" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAA8CAIAAADpFA0BAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAADRJREFUeNrsy7ENACAMBLE8++8caFFKKiRffU53112SGs3ttOohGIZhGIZhGIZh+Fe8BRgAiaUGde6NOSEAAAAASUVORK5CYII="/></elements></component></components></skin>';this.xml=null;if(window.DOMParser){parser=new DOMParser();this.xml=parser.parseFromString(this.text,"text/xml")}else{this.xml=new ActiveXObject("Microsoft.XMLDOM");this.xml.async="false";this.xml.loadXML(this.text)}return this}})(jwplayer);(function(a){_utils=a.utils;_css=_utils.css;_hide=function(b){_css(b,{display:"none"})};_show=function(b){_css(b,{display:"block"})};a.html5.display=function(j,F){var i={icons:true,showmute:false};var P=_utils.extend({},i,F);var h=j;var O={};var e;var t;var v;var M;var r;var H;var z;var I=!_utils.exists(h.skin.getComponentSettings("display").bufferrotation)?15:parseInt(h.skin.getComponentSettings("display").bufferrotation,10);var p=!_utils.exists(h.skin.getComponentSettings("display").bufferinterval)?100:parseInt(h.skin.getComponentSettings("display").bufferinterval,10);var y=-1;var s="";var J=true;var d;var g=false;var m=false;var G=new a.html5.eventdispatcher();_utils.extend(this,G);var C={display:{style:{cursor:"pointer",top:0,left:0,overflow:"hidden"},click:l},display_icon:{style:{cursor:"pointer",position:"absolute",top:((h.skin.getSkinElement("display","background").height-h.skin.getSkinElement("display","playIcon").height)/2),left:((h.skin.getSkinElement("display","background").width-h.skin.getSkinElement("display","playIcon").width)/2),border:0,margin:0,padding:0,zIndex:3,display:"none"}},display_iconBackground:{style:{cursor:"pointer",position:"absolute",top:((t-h.skin.getSkinElement("display","background").height)/2),left:((e-h.skin.getSkinElement("display","background").width)/2),border:0,backgroundImage:(["url(",h.skin.getSkinElement("display","background").src,")"]).join(""),width:h.skin.getSkinElement("display","background").width,height:h.skin.getSkinElement("display","background").height,margin:0,padding:0,zIndex:2,display:"none"}},display_image:{style:{display:"none",width:e,height:t,position:"absolute",cursor:"pointer",left:0,top:0,margin:0,padding:0,textDecoration:"none",zIndex:1}},display_text:{style:{zIndex:4,position:"relative",opacity:0.8,backgroundColor:parseInt("000000",16),color:parseInt("ffffff",16),textAlign:"center",fontFamily:"Arial,sans-serif",padding:"0 5px",fontSize:14}}};h.jwAddEventListener(a.api.events.JWPLAYER_PLAYER_STATE,o);h.jwAddEventListener(a.api.events.JWPLAYER_MEDIA_MUTE,o);h.jwAddEventListener(a.api.events.JWPLAYER_PLAYLIST_ITEM,o);h.jwAddEventListener(a.api.events.JWPLAYER_ERROR,n);K();function K(){O.display=B("div","display");O.display_text=B("div","display_text");O.display.appendChild(O.display_text);O.display_image=B("img","display_image");O.display_image.onerror=function(Q){_hide(O.display_image)};O.display_image.onload=x;O.display_icon=B("div","display_icon");O.display_iconBackground=B("div","display_iconBackground");O.display.appendChild(O.display_image);O.display_iconBackground.appendChild(O.display_icon);O.display.appendChild(O.display_iconBackground);f();setTimeout((function(){m=true;if(P.icons.toString()=="true"){E()}}),1)}this.getDisplayElement=function(){return O.display};this.resize=function(R,Q){_css(O.display,{width:R,height:Q});_css(O.display_text,{width:(R-10),top:((Q-O.display_text.getBoundingClientRect().height)/2)});_css(O.display_iconBackground,{top:((Q-h.skin.getSkinElement("display","background").height)/2),left:((R-h.skin.getSkinElement("display","background").width)/2)});if(e!=R||t!=Q){e=R;t=Q;d=undefined;E()}c();o({})};this.show=function(){if(g){g=false;d=undefined;b()}};this.hide=function(){if(!g){d=undefined;A();g=true}};function x(Q){v=O.display_image.naturalWidth;M=O.display_image.naturalHeight;c()}function c(){_utils.stretch(h.jwGetStretching(),O.display_image,e,t,v,M)}function B(Q,S){var R=document.createElement(Q);R.id=h.id+"_jwplayer_"+S;_css(R,C[S].style);return R}function f(){for(var Q in O){if(_utils.exists(C[Q].click)){O[Q].onclick=C[Q].click}}}function l(Q){if(typeof Q.preventDefault!="undefined"){Q.preventDefault()}else{Q.returnValue=false}if(h.jwGetState()!=a.api.events.state.PLAYING){h.jwPlay()}else{h.jwPause()}}function N(Q){if(z){A();return}O.display_icon.style.backgroundImage=(["url(",h.skin.getSkinElement("display",Q).src,")"]).join("");_css(O.display_icon,{width:h.skin.getSkinElement("display",Q).width,height:h.skin.getSkinElement("display",Q).height,top:(h.skin.getSkinElement("display","background").height-h.skin.getSkinElement("display",Q).height)/2,left:(h.skin.getSkinElement("display","background").width-h.skin.getSkinElement("display",Q).width)/2});b();if(_utils.exists(h.skin.getSkinElement("display",Q+"Over"))){O.display_icon.onmouseover=function(R){O.display_icon.style.backgroundImage=["url(",h.skin.getSkinElement("display",Q+"Over").src,")"].join("")};O.display_icon.onmouseout=function(R){O.display_icon.style.backgroundImage=["url(",h.skin.getSkinElement("display",Q).src,")"].join("")}}else{O.display_icon.onmouseover=null;O.display_icon.onmouseout=null}}function A(){if(P.icons.toString()=="true"){_hide(O.display_icon);_hide(O.display_iconBackground);L()}}function b(){if(!g&&P.icons.toString()=="true"){_show(O.display_icon);_show(O.display_iconBackground);E()}}function n(Q){z=true;A();O.display_text.innerHTML=Q.error;_show(O.display_text);O.display_text.style.top=((t-O.display_text.getBoundingClientRect().height)/2)+"px"}function D(){O.display_image.style.display="none"}function o(Q){if((Q.type==a.api.events.JWPLAYER_PLAYER_STATE||Q.type==a.api.events.JWPLAYER_PLAYLIST_ITEM)&&z){z=false;_hide(O.display_text)}var R=h.jwGetState();if(R==s){return}s=R;if(y>=0){clearTimeout(y)}if(J||h.jwGetState()==a.api.events.state.PLAYING||h.jwGetState()==a.api.events.state.PAUSED){q(h.jwGetState())}else{y=setTimeout(k(h.jwGetState()),300)}}function k(Q){return(function(){q(Q)})}function q(Q){if(_utils.exists(H)){clearInterval(H);H=null;_utils.animations.rotate(O.display_icon,0)}switch(Q){case a.api.events.state.BUFFERING:if(_utils.isIOS()){D();A()}else{if(h.jwGetPlaylist()[h.jwGetItem()].provider=="sound"){u()}r=0;H=setInterval(function(){r+=I;_utils.animations.rotate(O.display_icon,r%360)},p);N("bufferIcon");J=true}break;case a.api.events.state.PAUSED:if(!_utils.isIOS()){if(h.jwGetPlaylist()[h.jwGetItem()].provider!="sound"){_css(O.display_image,{background:"transparent no-repeat center center"})}N("playIcon");J=true}break;case a.api.events.state.IDLE:if(h.jwGetPlaylist()[h.jwGetItem()].image){u()}else{D()}N("playIcon");J=true;break;default:if(h.jwGetPlaylist()[h.jwGetItem()].provider=="sound"){if(_utils.isIOS()){D();J=false}else{u()}}else{D();J=false}if(h.jwGetMute()&&P.showmute){N("muteIcon")}else{A()}break}y=-1}function u(){_css(O.display_image,{display:"block"});O.display_image.src=_utils.getAbsolutePath(h.jwGetPlaylist()[h.jwGetItem()].image)}function w(Q){return function(){if(!m){return}if(!g&&d!=Q){d=Q;G.sendEvent(Q,{component:"display",boundingRect:_utils.getDimensions(O.display_iconBackground)})}}}var E=w(a.api.events.JWPLAYER_COMPONENT_SHOW);var L=w(a.api.events.JWPLAYER_COMPONENT_HIDE);return this}})(jwplayer);(function(a){_css=a.utils.css;a.html5.dock=function(l,q){function m(){return{align:a.html5.view.positions.RIGHT}}var i=a.utils.extend({},m(),q);if(i.align=="FALSE"){return}var e={};var o=[];var f;var r;var c=false;var p=false;var d={x:0,y:0,width:0,height:0};var n;var h=new a.html5.eventdispatcher();_utils.extend(this,h);var j=document.createElement("div");j.id=l.id+"_jwplayer_dock";this.getDisplayElement=function(){return j};this.setButton=function(w,t,u,v){if(!t&&e[w]){a.utils.arrays.remove(o,w);j.removeChild(e[w].div);delete e[w]}else{if(t){if(!e[w]){e[w]={}}e[w].handler=t;e[w].outGraphic=u;e[w].overGraphic=v;if(!e[w].div){o.push(w);e[w].div=document.createElement("div");e[w].div.style.position="relative";j.appendChild(e[w].div);e[w].div.appendChild(document.createElement("img"));e[w].div.childNodes[0].style.position="absolute";e[w].div.childNodes[0].style.left=0;e[w].div.childNodes[0].style.top=0;e[w].div.childNodes[0].style.zIndex=10;e[w].div.childNodes[0].style.cursor="pointer";e[w].div.appendChild(document.createElement("img"));e[w].div.childNodes[1].style.position="absolute";e[w].div.childNodes[1].style.left=0;e[w].div.childNodes[1].style.top=0;if(l.skin.getSkinElement("dock","button")){e[w].div.childNodes[1].src=l.skin.getSkinElement("dock","button").src}e[w].div.childNodes[1].style.zIndex=9;e[w].div.childNodes[1].style.cursor="pointer";e[w].div.onmouseover=function(){if(e[w].overGraphic){e[w].div.childNodes[0].src=e[w].overGraphic}if(l.skin.getSkinElement("dock","buttonOver")){e[w].div.childNodes[1].src=l.skin.getSkinElement("dock","buttonOver").src}};e[w].div.onmouseout=function(){if(e[w].outGraphic){e[w].div.childNodes[0].src=e[w].outGraphic}if(l.skin.getSkinElement("dock","button")){e[w].div.childNodes[1].src=l.skin.getSkinElement("dock","button").src}};if(e[w].overGraphic){e[w].div.childNodes[0].src=e[w].overGraphic}if(e[w].outGraphic){e[w].div.childNodes[0].src=e[w].outGraphic}if(l.skin.getSkinElement("dock","button")){e[w].div.childNodes[1].src=l.skin.getSkinElement("dock","button").src}}if(t){e[w].div.onclick=function(x){x.preventDefault();a(l.id).callback(w);if(e[w].overGraphic){e[w].div.childNodes[0].src=e[w].overGraphic}if(l.skin.getSkinElement("dock","button")){e[w].div.childNodes[1].src=l.skin.getSkinElement("dock","button").src}}}}}g(f,r)};function g(t,F){f=t;r=F;if(o.length>0){var u=10;var E=u;var B=-1;var C=l.skin.getSkinElement("dock","button").height;var A=l.skin.getSkinElement("dock","button").width;var y=t-A-u;var D,x;if(i.align==a.html5.view.positions.LEFT){B=1;y=u}for(var v=0;v<o.length;v++){var G=Math.floor(E/F);if((E+C+u)>((G+1)*F)){E=((G+1)*F)+u;G=Math.floor(E/F)}var w=e[o[v]].div;w.style.top=(E%F)+"px";w.style.left=(y+(l.skin.getSkinElement("dock","button").width+u)*G*B)+"px";var z={x:a.utils.parseDimension(w.style.left),y:a.utils.parseDimension(w.style.top),width:A,height:C};if(!D||(z.x<=D.x&&z.y<=D.y)){D=z}if(!x||(z.x>=x.x&&z.y>=x.y)){x=z}E+=l.skin.getSkinElement("dock","button").height+u}d={x:D.x,y:D.y,width:x.x-D.x+x.width,height:D.y-x.y+x.height}}if(p!=l.jwGetFullscreen()){p=l.jwGetFullscreen();n=undefined;k()}}function b(t){return function(){if(!c&&n!=t&&o.length>0){n=t;h.sendEvent(t,{component:"dock",boundingRect:d})}}}var k=b(a.api.events.JWPLAYER_COMPONENT_SHOW);var s=b(a.api.events.JWPLAYER_COMPONENT_HIDE);this.resize=g;this.show=function(){_css(j,{display:"block"});if(c){c=false;k()}};this.hide=function(){_css(j,{display:"none"});if(!c){s();c=true}};return this}})(jwplayer);(function(a){a.html5.eventdispatcher=function(d,b){var c=new a.events.eventdispatcher(b);a.utils.extend(this,c);this.sendEvent=function(e,f){if(!a.utils.exists(f)){f={}}a.utils.extend(f,{id:d,version:a.version,type:e});c.sendEvent(e,f)}}})(jwplayer);(function(a){var b={prefix:"http://l.longtailvideo.com/html5/",file:"logo.png",link:"http://www.longtailvideo.com/players/jw-flv-player/",margin:8,out:0.5,over:1,timeout:5,hide:true,position:"bottom-left"};_css=a.utils.css;a.html5.logo=function(l,m){var r=l;var n;var i;var c;j();function j(){p();d();f()}function p(){if(b.prefix){var t=l.version.split(/\W/).splice(0,2).join("/");if(b.prefix.indexOf(t)<0){b.prefix+=t+"/"}}if(m.position==a.html5.view.positions.OVER){m.position=b.position}i=a.utils.extend({},b)}function d(){c=document.createElement("img");c.id=r.id+"_jwplayer_logo";c.style.display="none";c.onload=function(t){_css(c,q());r.jwAddEventListener(a.api.events.JWPLAYER_PLAYER_STATE,s);e()};if(!i.file){return}if(i.file.indexOf("http://")===0){c.src=i.file}else{c.src=i.prefix+i.file}}if(!i.file){return}this.resize=function(u,t){};this.getDisplayElement=function(){return c};function f(){if(i.link){c.onmouseover=h;c.onmouseout=e;c.onclick=o}else{this.mouseEnabled=false}}function o(t){if(typeof t!="undefined"){t.stopPropagation()}r.jwPause();r.jwSetFullscreen(false);if(i.link){window.open(i.link,"_self")}return}function e(t){if(i.link){c.style.opacity=i.out}return}function h(t){if(i.hide){c.style.opacity=i.over}return}function q(){var v={textDecoration:"none",position:"absolute",cursor:"pointer"};v.display=i.hide?"none":"block";var u=i.position.toLowerCase().split("-");for(var t in u){v[u[t]]=i.margin}return v}function k(){if(i.hide){c.style.display="block";c.style.opacity=0;a.utils.fadeTo(c,i.out,0.1,parseFloat(c.style.opacity));n=setTimeout(function(){g()},i.timeout*1000)}}function g(){if(i.hide){a.utils.fadeTo(c,0,0.1,parseFloat(c.style.opacity))}}function s(t){if(t.newstate==a.api.events.state.BUFFERING){clearTimeout(n);k()}}return this}})(jwplayer);(function(a){var c={ended:a.api.events.state.IDLE,playing:a.api.events.state.PLAYING,pause:a.api.events.state.PAUSED,buffering:a.api.events.state.BUFFERING};var e=a.utils;var b=e.css;var d=e.isIOS();a.html5.mediavideo=function(h,r){var q={abort:m,canplay:j,canplaythrough:j,durationchange:F,emptied:m,ended:j,error:t,loadeddata:F,loadedmetadata:F,loadstart:j,pause:j,play:C,playing:j,progress:u,ratechange:m,seeked:j,seeking:j,stalled:j,suspend:j,timeupdate:C,volumechange:m,waiting:j,canshowcurrentframe:m,dataunavailable:m,empty:m,load:y,loadedfirstframe:m};var i=new a.html5.eventdispatcher();e.extend(this,i);var x=h,k=r,l,A,z,w,f,G=false,B,o,p;n();this.load=function(I,J){if(typeof J=="undefined"){J=true}w=I;e.empty(l);p=0;if(I.levels&&I.levels.length>0){if(I.levels.length==1){l.src=I.levels[0].file}else{if(l.src){l.removeAttribute("src")}for(var H=0;H<I.levels.length;H++){var K=l.ownerDocument.createElement("source");K.src=I.levels[H].file;l.appendChild(K);p++}}}else{l.src=I.file}if(d){if(I.image){l.poster=I.image}l.controls="controls"}B=o=z=false;x.buffer=0;if(!e.exists(I.start)){I.start=0}x.duration=I.duration;i.sendEvent(a.api.events.JWPLAYER_MEDIA_LOADED);if((!d&&I.levels.length==1)||!G){l.load()}G=false;if(J){D(a.api.events.state.BUFFERING);i.sendEvent(a.api.events.JWPLAYER_MEDIA_BUFFER,{bufferPercent:0});this.play()}};this.play=function(){if(A!=a.api.events.state.PLAYING){s();l.play();if(o){D(a.api.events.state.PLAYING)}else{D(a.api.events.state.BUFFERING)}}};this.pause=function(){l.pause();D(a.api.events.state.PAUSED)};this.seek=function(H){if(!(x.duration<=0||isNaN(x.duration))&&!(x.position<=0||isNaN(x.position))){l.currentTime=H;l.play()}};_stop=this.stop=function(H){if(!e.exists(H)){H=true}g();if(H){l.style.display="none";o=false;var I=navigator.userAgent;if(I.match(/chrome/i)){l.src=undefined}else{if(I.match(/safari/i)){l.removeAttribute("src")}else{l.src=""}}l.removeAttribute("controls");l.removeAttribute("poster");e.empty(l);l.load();G=true;if(l.webkitSupportsFullscreen){try{l.webkitExitFullscreen()}catch(J){}}}D(a.api.events.state.IDLE)};this.fullscreen=function(H){if(H===true){this.resize("100%","100%")}else{this.resize(x.config.width,x.config.height)}};this.resize=function(I,H){if(false){b(k,{width:I,height:H})}i.sendEvent(a.api.events.JWPLAYER_MEDIA_RESIZE,{fullscreen:x.fullscreen,width:I,hieght:H})};this.volume=function(H){if(!d){l.volume=H/100;x.volume=H;i.sendEvent(a.api.events.JWPLAYER_MEDIA_VOLUME,{volume:Math.round(H)})}};this.mute=function(H){if(!d){l.muted=H;x.mute=H;i.sendEvent(a.api.events.JWPLAYER_MEDIA_MUTE,{mute:H})}};this.getDisplayElement=function(){return l};this.hasChrome=function(){return false};function n(){l=document.createElement("video");A=a.api.events.state.IDLE;for(var H in q){l.addEventListener(H,function(I){if(e.exists(I.target.parentNode)){q[I.type](I)}},true)}if(k.parentNode){k.parentNode.replaceChild(l,k)}if(!l.id){l.id=k.id}}function D(H){if(H==a.api.events.state.PAUSED&&A==a.api.events.state.IDLE){return}if(A!=H){var I=A;x.state=A=H;i.sendEvent(a.api.events.JWPLAYER_PLAYER_STATE,{oldstate:I,newstate:H})}}function m(H){}function u(J){var I;if(e.exists(J)&&J.lengthComputable&&J.total){I=J.loaded/J.total*100}else{if(e.exists(l.buffered)&&(l.buffered.length>0)){var H=l.buffered.length-1;if(H>=0){I=l.buffered.end(H)/l.duration*100}}}if(o===false&&A==a.api.events.state.BUFFERING){i.sendEvent(a.api.events.JWPLAYER_MEDIA_BUFFER_FULL);o=true}if(!B){if(I==100){B=true}if(e.exists(I)&&(I>x.buffer)){x.buffer=Math.round(I);i.sendEvent(a.api.events.JWPLAYER_MEDIA_BUFFER,{bufferPercent:Math.round(I)})}}}function C(I){if(e.exists(I)&&e.exists(I.target)){if(x.duration<=0||isNaN(x.duration)){x.duration=Math.round(I.target.duration*10)/10}if(!z&&l.readyState>0){l.style.display="block";D(a.api.events.state.PLAYING)}if(A==a.api.events.state.PLAYING){if(!z&&l.readyState>0){z=true;try{if(l.currentTime<w.start){l.currentTime=w.start}}catch(H){}l.volume=x.volume/100;l.muted=x.mute}x.position=Math.round(I.target.currentTime*10)/10;i.sendEvent(a.api.events.JWPLAYER_MEDIA_TIME,{position:I.target.currentTime,duration:x.duration});if(x.position>=x.duration&&(x.position>0||x.duration>0)){v()}}}u(I)}function y(H){}function j(H){if(c[H.type]){if(H.type=="ended"){v()}else{D(c[H.type])}}}function F(H){var I={height:H.target.videoHeight,width:H.target.videoWidth,duration:Math.round(H.target.duration*10)/10};if(x.duration===0||isNaN(x.duration)){x.duration=Math.round(H.target.duration*10)/10}i.sendEvent(a.api.events.JWPLAYER_MEDIA_META,{metadata:I})}function t(J){if(A==a.api.events.state.IDLE){return}var I="There was an error: ";if((J.target.error&&J.target.tagName.toLowerCase()=="video")||J.target.parentNode.error&&J.target.parentNode.tagName.toLowerCase()=="video"){var H=!e.exists(J.target.error)?J.target.parentNode.error:J.target.error;switch(H.code){case H.MEDIA_ERR_ABORTED:I="You aborted the video playback: ";break;case H.MEDIA_ERR_NETWORK:I="A network error caused the video download to fail part-way: ";break;case H.MEDIA_ERR_DECODE:I="The video playback was aborted due to a corruption problem or because the video used features your browser did not support: ";break;case H.MEDIA_ERR_SRC_NOT_SUPPORTED:I="The video could not be loaded, either because the server or network failed or because the format is not supported: ";break;default:I="An unknown error occurred: ";break}}else{if(J.target.tagName.toLowerCase()=="source"){p--;if(p>0){return}I="The video could not be loaded, either because the server or network failed or because the format is not supported: "}else{e.log("An unknown error occurred.  Continuing...");return}}_stop(false);I+=E();_error=true;i.sendEvent(a.api.events.JWPLAYER_ERROR,{error:I});return}function E(){var J="";for(var I in w.levels){var H=w.levels[I];var K=k.ownerDocument.createElement("source");J+=a.utils.getAbsolutePath(H.file);if(I<(w.levels.length-1)){J+=", "}}return J}function s(){if(!e.exists(f)){f=setInterval(function(){u()},100)}}function g(){clearInterval(f);f=null}function v(){if(A!=a.api.events.state.IDLE){_stop(false);i.sendEvent(a.api.events.JWPLAYER_MEDIA_COMPLETE)}}}})(jwplayer);(function(a){var c={ended:a.api.events.state.IDLE,playing:a.api.events.state.PLAYING,pause:a.api.events.state.PAUSED,buffering:a.api.events.state.BUFFERING};var b=a.utils.css;a.html5.mediayoutube=function(i,e){var f=new a.html5.eventdispatcher();a.utils.extend(this,f);var k=i;var h=document.getElementById(e.id);var g=a.api.events.state.IDLE;var n,m;l();function j(p){if(g!=p){var q=g;k.state=p;g=p;f.sendEvent(a.api.events.JWPLAYER_PLAYER_STATE,{oldstate:q,newstate:p})}}this.getDisplayElement=function(){return h};this.play=function(){if(g==a.api.events.state.IDLE){f.sendEvent(a.api.events.JWPLAYER_MEDIA_BUFFER,{bufferPercent:100});f.sendEvent(a.api.events.JWPLAYER_MEDIA_BUFFER_FULL);j(a.api.events.state.PLAYING)}else{if(g==a.api.events.state.PAUSED){j(a.api.events.state.PLAYING)}}};this.pause=function(){j(a.api.events.state.PAUSED)};this.seek=function(p){};this.stop=function(p){if(!_utils.exists(p)){p=true}k.position=0;j(a.api.events.state.IDLE);if(p){b(n,{display:"none"})}};this.volume=function(p){k.volume=p;f.sendEvent(a.api.events.JWPLAYER_MEDIA_VOLUME,{volume:Math.round(p)})};this.mute=function(p){h.muted=p;k.mute=p;f.sendEvent(a.api.events.JWPLAYER_MEDIA_MUTE,{mute:p})};this.resize=function(q,p){if(q*p>0){n.width=m.width=q;n.height=m.height=p}f.sendEvent(a.api.events.JWPLAYER_MEDIA_RESIZE,{fullscreen:k.fullscreen,width:q,height:p})};this.fullscreen=function(p){if(p===true){this.resize("100%","100%")}else{this.resize(k.config.width,k.config.height)}};this.load=function(p){b(n,{display:"block"});o(p);j(a.api.events.state.BUFFERING);f.sendEvent(a.api.events.JWPLAYER_MEDIA_BUFFER,{bufferPercent:0});f.sendEvent(a.api.events.JWPLAYER_MEDIA_LOADED);this.play()};this.hasChrome=function(){return(g!=a.api.events.state.IDLE)};function o(v){var s=v.levels[0].file;s=["http://www.youtube.com/v/",d(s),"&amp;hl=en_US&amp;fs=1&autoplay=1"].join("");var u={movie:s,allowfullscreen:"true",allowscriptaccess:"always"};n.innerHTML="";for(var p in u){var t=document.createElement("param");t.name=p;t.value=u[p];n.appendChild(t)}var q={src:s,type:"application/x-shockwave-flash",allowfullscreen:"true",allowscriptaccess:"always",width:n.width,height:n.height};for(var r in q){m.setAttribute(r,q[r])}n.appendChild(m);n.style.zIndex=2147483000}function l(){n=document.createElement("object");n.id=h.id;n.style.position="absolute";n.width=k.config.width;n.height=k.config.height;if(h.parentNode){h.parentNode.replaceChild(n,h)}h=n;m=document.createElement("embed");n.appendChild(m);if(a.utils.isIOS()&&k.playlist&&k.playlist[k.item]){o(k.playlist[k.item])}}function d(q){var p=q.split(/\?|\#\!/);var s="";for(var r=0;r<p.length;r++){if(p[r].substr(0,2)=="v="){s=p[r].substr(2)}}if(s==""){if(q.indexOf("/v/")>=0){s=q.substr(q.indexOf("/v/")+3)}else{if(q.indexOf("youtu.be")>=0){s=q.substr(q.indexOf("youtu.be/")+9)}else{s=q}}}if(s.indexOf("?")>-1){s=s.substr(0,s.indexOf("?"))}if(s.indexOf("&")>-1){s=s.substr(0,s.indexOf("&"))}return s}this.embed=m;return this}})(jwplayer);(function(jwplayer){var _configurableStateVariables=["width","height","start","duration","volume","mute","fullscreen","item","plugins","stretching"];jwplayer.html5.model=function(api,container,options){var _api=api;var _container=container;var _model={id:_container.id,playlist:[],state:jwplayer.api.events.state.IDLE,position:0,buffer:0,config:{width:480,height:320,item:-1,skin:undefined,file:undefined,image:undefined,start:0,duration:0,bufferlength:5,volume:90,mute:false,fullscreen:false,repeat:"",stretching:jwplayer.utils.stretching.UNIFORM,autostart:false,debug:undefined,screencolor:undefined}};var _media;var _eventDispatcher=new jwplayer.html5.eventdispatcher();var _components=["display","logo","playlist","controlbar","dock"];jwplayer.utils.extend(_model,_eventDispatcher);for(var option in options){if(typeof options[option]=="string"){var type=/color$/.test(option)?"color":null;options[option]=jwplayer.utils.typechecker(options[option],type)}var config=_model.config;var path=option.split(".");for(var edge in path){if(edge==path.length-1){config[path[edge]]=options[option]}else{if(!jwplayer.utils.exists(config[path[edge]])){config[path[edge]]={}}config=config[path[edge]]}}}for(var index in _configurableStateVariables){var configurableStateVariable=_configurableStateVariables[index];_model[configurableStateVariable]=_model.config[configurableStateVariable]}var pluginorder=_components.concat([]);if(jwplayer.utils.exists(_model.plugins)){if(typeof _model.plugins=="string"){var userplugins=_model.plugins.split(",");for(var userplugin in userplugins){if(typeof userplugins[userplugin]=="string"){pluginorder.push(userplugins[userplugin].replace(/^\s+|\s+$/g,""))}}}}if(typeof _model.config.chromeless=="undefined"&&jwplayer.utils.isIPod()){_model.config.chromeless=true}if(jwplayer.utils.isIPad()){pluginorder=["logo","display","playlist"];if(!jwplayer.utils.exists(_model.config.repeat)){_model.config.repeat="list"}}else{if(_model.config.chromeless){pluginorder=["logo","playlist"];if(!jwplayer.utils.exists(_model.config.repeat)){_model.config.repeat="list"}}}_model.plugins={order:pluginorder,config:{},object:{}};if(typeof _model.config.components!="undefined"){for(var component in _model.config.components){_model.plugins.config[component]=_model.config.components[component]}}for(var pluginIndex in _model.plugins.order){var pluginName=_model.plugins.order[pluginIndex];var pluginConfig=!jwplayer.utils.exists(_model.plugins.config[pluginName])?{}:_model.plugins.config[pluginName];_model.plugins.config[pluginName]=!jwplayer.utils.exists(_model.plugins.config[pluginName])?pluginConfig:jwplayer.utils.extend(_model.plugins.config[pluginName],pluginConfig);if(!jwplayer.utils.exists(_model.plugins.config[pluginName].position)){if(pluginName=="playlist"){_model.plugins.config[pluginName].position=jwplayer.html5.view.positions.NONE}else{_model.plugins.config[pluginName].position=jwplayer.html5.view.positions.OVER}}else{_model.plugins.config[pluginName].position=_model.plugins.config[pluginName].position.toString().toUpperCase()}}if(typeof _model.plugins.config.dock!="undefined"){if(typeof _model.plugins.config.dock!="object"){var position=_model.plugins.config.dock.toString().toUpperCase();_model.plugins.config.dock={position:position}}if(typeof _model.plugins.config.dock.position!="undefined"){_model.plugins.config.dock.align=_model.plugins.config.dock.position;_model.plugins.config.dock.position=jwplayer.html5.view.positions.OVER}}function _loadExternal(playlistfile){var loader=new jwplayer.html5.playlistloader();loader.addEventListener(jwplayer.api.events.JWPLAYER_PLAYLIST_LOADED,function(evt){_model.playlist=new jwplayer.html5.playlist(evt);_loadComplete(true)});loader.addEventListener(jwplayer.api.events.JWPLAYER_ERROR,function(evt){_model.playlist=new jwplayer.html5.playlist({playlist:[]});_loadComplete(false)});loader.load(playlistfile)}function _loadComplete(){if(_model.config.shuffle){_model.item=_getShuffleItem()}else{if(_model.config.item>=_model.playlist.length){_model.config.item=_model.playlist.length-1}else{if(_model.config.item<0){_model.config.item=0}}_model.item=_model.config.item}_eventDispatcher.sendEvent(jwplayer.api.events.JWPLAYER_PLAYLIST_LOADED,{playlist:_model.playlist});if(_model.playlist[_model.item].file||_model.playlist[_model.item].levels[0].file){_model.setActiveMediaProvider(_model.playlist[_model.item])}}_model.loadPlaylist=function(arg){var input;if(typeof arg=="string"){try{input=eval(arg)}catch(err){input=arg}}else{input=arg}var config;switch(jwplayer.utils.typeOf(input)){case"object":config=input;break;case"array":config={playlist:input};break;default:_loadExternal(input);return;break}_model.playlist=new jwplayer.html5.playlist(config);if(jwplayer.utils.extension(_model.playlist[0].file)=="xml"){_loadExternal(_model.playlist[0].file)}else{_loadComplete()}};function _getShuffleItem(){var result=null;if(_model.playlist.length>1){while(!jwplayer.utils.exists(result)){result=Math.floor(Math.random()*_model.playlist.length);if(result==_model.item){result=null}}}else{result=0}return result}function forward(evt){if(evt.type==jwplayer.api.events.JWPLAYER_MEDIA_LOADED){_container=_media.getDisplayElement()}_eventDispatcher.sendEvent(evt.type,evt)}var _mediaProviders={};_model.setActiveMediaProvider=function(playlistItem){if(playlistItem.provider=="audio"){playlistItem.provider="sound"}var provider=playlistItem.provider;var current=_media?_media.getDisplayElement():null;if(provider=="sound"||provider=="http"||provider==""){provider="video"}if(!jwplayer.utils.exists(_mediaProviders[provider])){switch(provider){case"video":_media=new jwplayer.html5.mediavideo(_model,current?current:_container);break;case"youtube":_media=new jwplayer.html5.mediayoutube(_model,current?current:_container);break}if(!jwplayer.utils.exists(_media)){return false}_media.addGlobalListener(forward);_mediaProviders[provider]=_media}else{if(_media!=_mediaProviders[provider]){if(_media){_media.stop()}_media=_mediaProviders[provider]}}if(_model.config.chromeless){_media.load(playlistItem,false)}return true};_model.getMedia=function(){return _media};_model.seek=function(pos){_eventDispatcher.sendEvent(jwplayer.api.events.JWPLAYER_MEDIA_SEEK,{position:_model.position,offset:pos});return _media.seek(pos)};_model.setupPlugins=function(){for(var plugin in _model.plugins.order){try{var pluginName=_model.plugins.order[plugin];if(jwplayer.utils.exists(jwplayer.html5[pluginName])){if(pluginName=="playlist"){_model.plugins.object[pluginName]=new jwplayer.html5.playlistcomponent(_api,_model.plugins.config[pluginName])}else{_model.plugins.object[pluginName]=new jwplayer.html5[pluginName](_api,_model.plugins.config[pluginName])}}else{_model.plugins.order.splice(plugin,plugin+1)}if(typeof _model.plugins.object[pluginName].addGlobalListener=="function"){_model.plugins.object[pluginName].addGlobalListener(forward)}}catch(err){jwplayer.utils.log("Could not setup "+pluginName)}}};return _model}})(jwplayer);(function(a){a.html5.playlist=function(b){var d=[];if(b.playlist&&b.playlist instanceof Array&&b.playlist.length>0){for(var c in b.playlist){if(!isNaN(parseInt(c))){d.push(new a.html5.playlistitem(b.playlist[c]))}}}else{d.push(new a.html5.playlistitem(b))}return d}})(jwplayer);(function(a){var c={size:180,position:a.html5.view.positions.NONE,itemheight:60,thumbs:true,fontcolor:"#000000",overcolor:"",activecolor:"",backgroundcolor:"#f8f8f8",font:"_sans",fontsize:"",fontstyle:"",fontweight:""};var b={_sans:"Arial, Helvetica, sans-serif",_serif:"Times, Times New Roman, serif",_typewriter:"Courier New, Courier, monospace"};_utils=a.utils;_css=_utils.css;_hide=function(d){_css(d,{display:"none"})};_show=function(d){_css(d,{display:"block"})};a.html5.playlistcomponent=function(q,A){var v=q;var e=a.utils.extend({},c,v.skin.getComponentSettings("playlist"),A);if(e.position==a.html5.view.positions.NONE||typeof a.html5.view.positions[e.position]=="undefined"){return}var w;var k;var B;var d;var g;var f;var j=-1;var h={background:undefined,item:undefined,itemOver:undefined,itemImage:undefined,itemActive:undefined};this.getDisplayElement=function(){return w};this.resize=function(E,C){k=E;B=C;var D={width:k,height:B};_css(w,D)};this.show=function(){_show(w)};this.hide=function(){_hide(w)};function i(){w=document.createElement("div");w.id=v.id+"_jwplayer_playlistcomponent";switch(e.position){case a.html5.view.positions.RIGHT:case a.html5.view.positions.LEFT:w.style.width=e.size+"px";break;case a.html5.view.positions.TOP:case a.html5.view.positions.BOTTOM:w.style.height=e.size+"px";break}z();if(h.item){e.itemheight=h.item.height}w.style.backgroundColor="#C6C6C6";v.jwAddEventListener(a.api.events.JWPLAYER_PLAYLIST_LOADED,r);v.jwAddEventListener(a.api.events.JWPLAYER_PLAYLIST_ITEM,t);v.jwAddEventListener(a.api.events.JWPLAYER_PLAYER_STATE,l)}function o(){var C=document.createElement("ul");_css(C,{width:w.style.width,minWidth:w.style.width,height:w.style.height,backgroundColor:e.backgroundcolor,backgroundImage:h.background?"url("+h.background.src+")":"",color:e.fontcolor,listStyle:"none",margin:0,padding:0,fontFamily:b[e.font]?b[e.font]:b._sans,fontSize:(e.fontsize?e.fontsize:11)+"px",fontStyle:e.fontstyle,fontWeight:e.fontweight,overflowY:"auto"});return C}function x(C){return function(){var D=f.getElementsByClassName("item")[C];var E=e.fontcolor;var F=h.item?"url("+h.item.src+")":"";if(C==v.jwGetPlaylistIndex()){if(e.activecolor){E=e.activecolor}if(h.itemActive){F="url("+h.itemActive.src+")"}}_css(D,{color:e.overcolor?e.overcolor:E,backgroundImage:h.itemOver?"url("+h.itemOver.src+")":F})}}function n(C){return function(){var D=f.getElementsByClassName("item")[C];var E=e.fontcolor;var F=h.item?"url("+h.item.src+")":"";if(C==v.jwGetPlaylistIndex()){if(e.activecolor){E=e.activecolor}if(h.itemActive){F="url("+h.itemActive.src+")"}}_css(D,{color:E,backgroundImage:F})}}function p(D){var F=d[D];var C=document.createElement("li");C.className="item";_css(C,{height:e.itemheight,display:"block",cursor:"pointer",backgroundImage:h.item?"url("+h.item.src+")":"",backgroundSize:"100% "+e.itemheight+"px"});C.onmouseover=x(D);C.onmouseout=n(D);var G;var E=0;if(u()&&(F.image||F["playlist.image"]||h.itemImage)){G=new Image();G.className="image";if(h.itemImage){E=(e.itemheight-h.itemImage.height)/2}_css(G,{height:h.itemImage?h.itemImage.height:e.itemheight,width:h.itemImage?h.itemImage.width:e.itemheight*4/3,"float":"left",styleFloat:"left",cssFloat:"left",margin:"0 5px 0 0",background:"black",overflow:"auto",margin:E+"px"});if(F["playlist.image"]){G.src=F["playlist.image"]}else{if(F.image){G.src=F.image}else{if(h.itemImage){G.src=h.itemImage.src}}}C.appendChild(G)}var J=document.createElement("div");_css(J,{margin:"0 5px"});var I=document.createElement("span");I.className="title";_css(I,{margin:0,padding:"0 0 0 5px",height:e.fontsize?e.fontsize+10:20,lineHeight:24,overflow:"hidden",display:"block",fontSize:(e.fontsize?e.fontsize:13)+"px",fontWeight:"bold"});I.innerHTML=F?F.title:"";J.appendChild(I);if(F.description){var H=document.createElement("span");H.className="description";_css(H,{display:"block",margin:0,padding:"0 0 0 5px",height:e.itemheight-parseInt(I.style.height.replace("px","")),lineHeight:(e.fontsize?e.fontsize*1.5:18)+"px",overflow:"hidden"});H.innerHTML=F.description;J.appendChild(H)}C.appendChild(J);return C}function r(D){w.innerHTML="";d=v.jwGetPlaylist();if(!d){return}items=[];f=o();for(var E=0;E<d.length;E++){var C=p(E);C.onclick=y(E);f.appendChild(C);items.push(C)}j=v.jwGetPlaylistIndex();n(j)();w.appendChild(f);if(_utils.isIOS()&&window.iScroll){f.style.height=60*d.length+"px";var F=new iScroll(w.id)}}function y(C){return function(){v.jwPlaylistItem(C);v.jwPlay(true)}}function m(){f.scrollTop=v.jwGetPlaylistIndex()*e.itemheight}function u(){return e.thumbs.toString().toLowerCase()=="true"}function t(C){if(j>=0){n(j)();j=C.index}n(C.index)();m()}function l(){if(e.position==a.html5.view.positions.OVER){switch(v.jwGetState()){case a.api.events.state.IDLE:_show(w);break;default:_hide(w);break}}}function z(){for(var C in h){h[C]=s(C)}}function s(C){return v.skin.getSkinElement("playlist",C)}i();return this}})(jwplayer);(function(b){b.html5.playlistitem=function(d){var e={author:"",date:"",description:"",image:"",link:"",mediaid:"",tags:"",title:"",provider:"",file:"",streamer:"",duration:-1,start:0,currentLevel:-1,levels:[]};var c=b.utils.extend({},e,d);if(c.type){c.provider=c.type;delete c.type}if(c.levels.length===0){c.levels[0]=new b.html5.playlistitemlevel(c)}if(!c.provider){c.provider=a(c.levels[0])}else{c.provider=c.provider.toLowerCase()}return c};function a(e){if(b.utils.isYouTube(e.file)){return"youtube"}else{var f=b.utils.extension(e.file);var c;if(f&&b.utils.extensionmap[f]){c=b.utils.extensionmap[f].html5}else{if(e.type){c=e.type}}if(c){var d=c.split("/")[0];if(d=="audio"){return"sound"}else{if(d=="video"){return d}}}}return""}})(jwplayer);(function(a){a.html5.playlistitemlevel=function(b){var d={file:"",streamer:"",bitrate:0,width:0};for(var c in d){if(a.utils.exists(b[c])){d[c]=b[c]}}return d}})(jwplayer);(function(a){a.html5.playlistloader=function(){var c=new a.html5.eventdispatcher();a.utils.extend(this,c);this.load=function(e){a.utils.ajax(e,d,b)};function d(g){var f=[];try{var f=a.utils.parsers.rssparser.parse(g.responseXML.firstChild);c.sendEvent(a.api.events.JWPLAYER_PLAYLIST_LOADED,{playlist:new a.html5.playlist({playlist:f})})}catch(h){b("Could not parse the playlist")}}function b(e){c.sendEvent(a.api.events.JWPLAYER_ERROR,{error:e?e:"could not load playlist for whatever reason.  too bad"})}}})(jwplayer);(function(a){a.html5.skin=function(){var b={};var c=false;this.load=function(d,e){new a.html5.skinloader(d,function(f){c=true;b=f;e()},function(){new a.html5.skinloader("",function(f){c=true;b=f;e()})})};this.getSkinElement=function(d,e){if(c){try{return b[d].elements[e]}catch(f){a.utils.log("No such skin component / element: ",[d,e])}}return null};this.getComponentSettings=function(d){if(c){return b[d].settings}return null};this.getComponentLayout=function(d){if(c){return b[d].layout}return null}}})(jwplayer);(function(a){a.html5.skinloader=function(f,o,j){var n={};var c=o;var k=j;var e=true;var i;var m=f;var r=false;function l(){if(typeof m!="string"||m===""){d(a.html5.defaultSkin().xml)}else{a.utils.ajax(a.utils.getAbsolutePath(m),function(s){try{if(a.utils.exists(s.responseXML)){d(s.responseXML);return}}catch(t){h()}d(a.html5.defaultSkin().xml)},function(s){d(a.html5.defaultSkin().xml)})}}function d(x){var D=x.getElementsByTagName("component");if(D.length===0){return}for(var G=0;G<D.length;G++){var B=D[G].getAttribute("name");var A={settings:{},elements:{},layout:{}};n[B]=A;var F=D[G].getElementsByTagName("elements")[0].getElementsByTagName("element");for(var E=0;E<F.length;E++){b(F[E],B)}var y=D[G].getElementsByTagName("settings")[0];if(y&&y.childNodes.length>0){var J=y.getElementsByTagName("setting");for(var O=0;O<J.length;O++){var P=J[O].getAttribute("name");var H=J[O].getAttribute("value");var w=/color$/.test(P)?"color":null;n[B].settings[P]=a.utils.typechecker(H,w)}}var K=D[G].getElementsByTagName("layout")[0];if(K&&K.childNodes.length>0){var L=K.getElementsByTagName("group");for(var v=0;v<L.length;v++){var z=L[v];n[B].layout[z.getAttribute("position")]={elements:[]};for(var N=0;N<z.attributes.length;N++){var C=z.attributes[N];n[B].layout[z.getAttribute("position")][C.name]=C.value}var M=z.getElementsByTagName("*");for(var u=0;u<M.length;u++){var s=M[u];n[B].layout[z.getAttribute("position")].elements.push({type:s.tagName});for(var t=0;t<s.attributes.length;t++){var I=s.attributes[t];n[B].layout[z.getAttribute("position")].elements[u][I.name]=I.value}if(!a.utils.exists(n[B].layout[z.getAttribute("position")].elements[u].name)){n[B].layout[z.getAttribute("position")].elements[u].name=s.tagName}}}}e=false;q()}}function q(){clearInterval(i);if(!r){i=setInterval(function(){p()},100)}}function b(x,w){var v=new Image();var s=x.getAttribute("name");var u=x.getAttribute("src");var z;if(u.indexOf("data:image/png;base64,")===0){z=u}else{var t=a.utils.getAbsolutePath(m);var y=t.substr(0,t.lastIndexOf("/"));z=[y,w,u].join("/")}n[w].elements[s]={height:0,width:0,src:"",ready:false,image:v};v.onload=function(A){g(v,s,w)};v.onerror=function(A){r=true;q();k()};v.src=z}function h(){for(var t in n){var v=n[t];for(var s in v.elements){var w=v.elements[s];var u=w.image;u.onload=null;u.onerror=null;delete w.image;delete v.elements[s]}delete n[t]}}function p(){for(var s in n){if(s!="properties"){for(var t in n[s].elements){if(!n[s].elements[t].ready){return}}}}if(e===false){clearInterval(i);c(n)}}function g(s,u,t){if(n[t]&&n[t].elements[u]){n[t].elements[u].height=s.height;n[t].elements[u].width=s.width;n[t].elements[u].src=s.src;n[t].elements[u].ready=true;q()}else{a.utils.log("Loaded an image for a missing element: "+t+"."+u)}}l()}})(jwplayer);(function(a){a.html5.api=function(c,n){var m={};var h=document.createElement("div");c.parentNode.replaceChild(h,c);h.id=c.id;m.version=a.version;m.id=h.id;var l=new a.html5.model(m,h,n);var j=new a.html5.view(m,h,l);var k=new a.html5.controller(m,h,l,j);m.skin=new a.html5.skin();m.jwPlay=function(o){if(typeof o=="undefined"){g()}else{if(o.toString().toLowerCase()=="true"){k.play()}else{k.pause()}}};m.jwPause=function(o){if(typeof o=="undefined"){g()}else{if(o.toString().toLowerCase()=="true"){k.pause()}else{k.play()}}};function g(){if(l.state==a.api.events.state.PLAYING||l.state==a.api.events.state.BUFFERING){k.pause()}else{k.play()}}m.jwStop=k.stop;m.jwSeek=k.seek;m.jwPlaylistItem=k.item;m.jwPlaylistNext=k.next;m.jwPlaylistPrev=k.prev;m.jwResize=k.resize;m.jwLoad=k.load;function i(o){return function(){return l[o]}}function f(o,q,p){return function(){var r=l.plugins.object[o];if(r&&r[q]&&typeof r[q]=="function"){r[q].apply(r,p)}}}m.jwGetItem=i("item");m.jwGetPosition=i("position");m.jwGetDuration=i("duration");m.jwGetBuffer=i("buffer");m.jwGetWidth=i("width");m.jwGetHeight=i("height");m.jwGetFullscreen=i("fullscreen");m.jwSetFullscreen=k.setFullscreen;m.jwGetVolume=i("volume");m.jwSetVolume=k.setVolume;m.jwGetMute=i("mute");m.jwSetMute=k.setMute;m.jwGetStretching=i("stretching");m.jwGetState=i("state");m.jwGetVersion=function(){return m.version};m.jwGetPlaylist=function(){return l.playlist};m.jwGetPlaylistIndex=m.jwGetItem;m.jwAddEventListener=k.addEventListener;m.jwRemoveEventListener=k.removeEventListener;m.jwSendEvent=k.sendEvent;m.jwDockSetButton=function(r,o,p,q){if(l.plugins.object.dock&&l.plugins.object.dock.setButton){l.plugins.object.dock.setButton(r,o,p,q)}};m.jwShowControlbar=f("controlbar","show");m.jwHideControlbar=f("controlbar","hide");m.jwShowDock=f("dock","show");m.jwHideDock=f("dock","hide");m.jwShowDisplay=f("display","show");m.jwHideDisplay=f("display","hide");m.jwGetLevel=function(){};m.jwGetBandwidth=function(){};m.jwGetLockState=function(){};m.jwLock=function(){};m.jwUnlock=function(){};var b=d(l,j,k);function e(q,p,o){return function(){q.addEventListener(a.api.events.JWPLAYER_PLAYLIST_LOADED,b);if(q.config.playlistfile){q.loadPlaylist(q.config.playlistfile)}else{if(typeof q.config.playlist=="array"){q.loadPlaylist(q.config.file)}else{q.loadPlaylist(q.config)}}}}function d(q,p,o){return function(r){q.removeEventListener(a.api.events.JWPLAYER_PLAYLIST_LOADED,b);q.setupPlugins();p.setup();var r={id:m.id,version:m.version};o.sendEvent(a.api.events.JWPLAYER_READY,r);if(a.utils.exists(playerReady)){playerReady(r)}if(a.utils.exists(window[q.config.playerReady])){window[q.config.playerReady](r)}q.sendEvent(a.api.events.JWPLAYER_PLAYLIST_LOADED,{playlist:q.playlist});if(q.config.autostart&&!a.utils.isIOS()){o.item(q.item)}}}if(l.config.chromeless&&!a.utils.isIPad()){setTimeout(e(l,j,k),25)}else{m.skin.load(l.config.skin,e(l,j,k))}return m}})(jwplayer)}; 
     1if(typeof jwplayer=="undefined"){var jwplayer=function(a){if(jwplayer.api){return jwplayer.api.selectPlayer(a)}};var $jw=jwplayer;jwplayer.version="5.7.1845";jwplayer.vid=document.createElement("video");jwplayer.audio=document.createElement("audio");jwplayer.source=document.createElement("source");(function(b){b.utils=function(){};b.utils.typeOf=function(d){var c=typeof d;if(c==="object"){if(d){if(d instanceof Array){c="array"}}else{c="null"}}return c};b.utils.extend=function(){var c=b.utils.extend["arguments"];if(c.length>1){for(var e=1;e<c.length;e++){for(var d in c[e]){c[0][d]=c[e][d]}}return c[0]}return null};b.utils.clone=function(f){var c;var d=b.utils.clone["arguments"];if(d.length==1){switch(b.utils.typeOf(d[0])){case"object":c={};for(var e in d[0]){c[e]=b.utils.clone(d[0][e])}break;case"array":c=[];for(var e in d[0]){c[e]=b.utils.clone(d[0][e])}break;default:return d[0];break}}return c};b.utils.extension=function(c){if(!c){return""}c=c.substring(c.lastIndexOf("/")+1,c.length);c=c.split("?")[0];if(c.lastIndexOf(".")>-1){return c.substr(c.lastIndexOf(".")+1,c.length).toLowerCase()}return};b.utils.html=function(c,d){c.innerHTML=d};b.utils.wrap=function(c,d){if(c.parentNode){c.parentNode.replaceChild(d,c)}d.appendChild(c)};b.utils.ajax=function(g,f,c){var e;if(window.XMLHttpRequest){e=new XMLHttpRequest()}else{e=new ActiveXObject("Microsoft.XMLHTTP")}e.onreadystatechange=function(){if(e.readyState===4){if(e.status===200){if(f){f(e)}}else{if(c){c(g)}}}};try{e.open("GET",g,true);e.send(null)}catch(d){if(c){c(g)}}return e};b.utils.load=function(d,e,c){d.onreadystatechange=function(){if(d.readyState===4){if(d.status===200){if(e){e()}}else{if(c){c()}}}}};b.utils.find=function(d,c){return d.getElementsByTagName(c)};b.utils.append=function(c,d){c.appendChild(d)};b.utils.isIE=function(){return((!+"\v1")||(typeof window.ActiveXObject!="undefined"))};b.utils.isLegacyAndroid=function(){var c=navigator.userAgent.toLowerCase();return(c.match(/android 2.[012]/i)!==null)};b.utils.isIOS=function(d){if(typeof d=="undefined"){d=/iP(hone|ad|od)/i}var c=navigator.userAgent.toLowerCase();return(c.match(d)!==null)};b.utils.isIPad=function(){return b.utils.isIOS(/iPad/i)};b.utils.isIPod=function(){return b.utils.isIOS(/iP(hone|od)/i)};b.utils.getFirstPlaylistItemFromConfig=function(c){var d={};var e;if(c.playlist&&c.playlist.length){e=c.playlist[0]}else{e=c}d.file=e.file;d.levels=e.levels;d.streamer=e.streamer;d.playlistfile=e.playlistfile;d.provider=e.provider;if(!d.provider){if(d.file&&(d.file.toLowerCase().indexOf("youtube.com")>-1||d.file.toLowerCase().indexOf("youtu.be")>-1)){d.provider="youtube"}if(d.streamer&&d.streamer.toLowerCase().indexOf("rtmp://")==0){d.provider="rtmp"}if(e.type){d.provider=e.type.toLowerCase()}}if(d.provider=="audio"){d.provider="sound"}return d};b.utils.getOuterHTML=function(c){if(c.outerHTML){return c.outerHTML}else{try{return new XMLSerializer().serializeToString(c)}catch(d){return""}}};b.utils.setOuterHTML=function(f,e){if(f.outerHTML){f.outerHTML=e}else{var g=document.createElement("div");g.innerHTML=e;var c=document.createRange();c.selectNodeContents(g);var d=c.extractContents();f.parentNode.insertBefore(d,f);f.parentNode.removeChild(f)}};b.utils.hasFlash=function(){if(typeof navigator.plugins!="undefined"&&typeof navigator.plugins["Shockwave Flash"]!="undefined"){return true}if(typeof window.ActiveXObject!="undefined"){try{new ActiveXObject("ShockwaveFlash.ShockwaveFlash");return true}catch(c){}}return false};b.utils.getPluginName=function(c){if(c.lastIndexOf("/")>=0){c=c.substring(c.lastIndexOf("/")+1,c.length)}if(c.lastIndexOf("-")>=0){c=c.substring(0,c.lastIndexOf("-"))}if(c.lastIndexOf(".swf")>=0){c=c.substring(0,c.lastIndexOf(".swf"))}if(c.lastIndexOf(".js")>=0){c=c.substring(0,c.lastIndexOf(".js"))}return c};b.utils.getPluginVersion=function(c){if(c.lastIndexOf("-")>=0){if(c.lastIndexOf(".js")>=0){return c.substring(c.lastIndexOf("-")+1,c.lastIndexOf(".js"))}else{if(c.lastIndexOf(".swf")>=0){return c.substring(c.lastIndexOf("-")+1,c.lastIndexOf(".swf"))}else{return c.substring(c.lastIndexOf("-")+1)}}}return""};b.utils.getAbsolutePath=function(j,h){if(!b.utils.exists(h)){h=document.location.href}if(!b.utils.exists(j)){return undefined}if(a(j)){return j}var k=h.substring(0,h.indexOf("://")+3);var g=h.substring(k.length,h.indexOf("/",k.length+1));var d;if(j.indexOf("/")===0){d=j.split("/")}else{var e=h.split("?")[0];e=e.substring(k.length+g.length+1,e.lastIndexOf("/"));d=e.split("/").concat(j.split("/"))}var c=[];for(var f=0;f<d.length;f++){if(!d[f]||!b.utils.exists(d[f])||d[f]=="."){continue}else{if(d[f]==".."){c.pop()}else{c.push(d[f])}}}return k+g+"/"+c.join("/")};function a(d){if(!b.utils.exists(d)){return}var e=d.indexOf("://");var c=d.indexOf("?");return(e>0&&(c<0||(c>e)))}b.utils.pluginPathType={ABSOLUTE:"ABSOLUTE",RELATIVE:"RELATIVE",CDN:"CDN"};b.utils.getPluginPathType=function(d){if(typeof d!="string"){return}d=d.split("?")[0];var e=d.indexOf("://");if(e>0){return b.utils.pluginPathType.ABSOLUTE}var c=d.indexOf("/");var f=b.utils.extension(d);if(e<0&&c<0&&(!f||!isNaN(f))){return b.utils.pluginPathType.CDN}return b.utils.pluginPathType.RELATIVE};b.utils.mapEmpty=function(c){for(var d in c){return false}return true};b.utils.mapLength=function(d){var c=0;for(var e in d){c++}return c};b.utils.log=function(d,c){if(typeof console!="undefined"&&typeof console.log!="undefined"){if(c){console.log(d,c)}else{console.log(d)}}};b.utils.css=function(d,g,c){if(b.utils.exists(d)){for(var e in g){try{if(typeof g[e]==="undefined"){continue}else{if(typeof g[e]=="number"&&!(e=="zIndex"||e=="opacity")){if(isNaN(g[e])){continue}if(e.match(/color/i)){g[e]="#"+b.utils.strings.pad(g[e].toString(16),6)}else{g[e]=Math.ceil(g[e])+"px"}}}d.style[e]=g[e]}catch(f){}}}};b.utils.isYouTube=function(c){return(c.indexOf("youtube.com")>-1||c.indexOf("youtu.be")>-1)};b.utils.transform=function(c,d){c.style.webkitTransform=d;c.style.MozTransform=d;c.style.OTransform=d};b.utils.stretch=function(h,m,l,f,k,g){if(typeof l=="undefined"||typeof f=="undefined"||typeof k=="undefined"||typeof g=="undefined"){return}var d=l/k;var e=f/g;var j=0;var i=0;m.style.overflow="hidden";b.utils.transform(m,"");var c={};switch(h.toUpperCase()){case b.utils.stretching.NONE:c.width=k;c.height=g;break;case b.utils.stretching.UNIFORM:if(d>e){c.width=k*e;c.height=g*e}else{c.width=k*d;c.height=g*d}break;case b.utils.stretching.FILL:if(d>e){c.width=k*d;c.height=g*d}else{c.width=k*e;c.height=g*e}break;case b.utils.stretching.EXACTFIT:b.utils.transform(m,["scale(",d,",",e,")"," translate(0px,0px)"].join(""));c.width=k;c.height=g;break;default:break}c.top=(f-c.height)/2;c.left=(l-c.width)/2;b.utils.css(m,c)};b.utils.stretching={NONE:"NONE",FILL:"FILL",UNIFORM:"UNIFORM",EXACTFIT:"EXACTFIT"};b.utils.deepReplaceKeyName=function(h,e,c){switch(b.utils.typeOf(h)){case"array":for(var g=0;g<h.length;g++){h[g]=b.utils.deepReplaceKeyName(h[g],e,c)}break;case"object":for(var f in h){var d=f.replace(new RegExp(e,"g"),c);h[d]=b.utils.deepReplaceKeyName(h[f],e,c);if(f!=d){delete h[f]}}break}return h};b.utils.isInArray=function(e,d){if(!(e)||!(e instanceof Array)){return false}for(var c=0;c<e.length;c++){if(d===e[c]){return true}}return false};b.utils.exists=function(c){switch(typeof(c)){case"string":return(c.length>0);break;case"object":return(c!==null);case"undefined":return false}return true};b.utils.empty=function(c){if(typeof c.hasChildNodes=="function"){while(c.hasChildNodes()){c.removeChild(c.firstChild)}}};b.utils.parseDimension=function(c){if(typeof c=="string"){if(c===""){return 0}else{if(c.lastIndexOf("%")>-1){return c}else{return parseInt(c.replace("px",""),10)}}}return c};b.utils.getDimensions=function(c){if(c&&c.style){return{x:b.utils.parseDimension(c.style.left),y:b.utils.parseDimension(c.style.top),width:b.utils.parseDimension(c.style.width),height:b.utils.parseDimension(c.style.height)}}else{return{}}}})(jwplayer);(function(a){a.events=function(){};a.events.COMPLETE="COMPLETE";a.events.ERROR="ERROR"})(jwplayer);(function(jwplayer){jwplayer.events.eventdispatcher=function(debug){var _debug=debug;var _listeners;var _globallisteners;this.resetEventListeners=function(){_listeners={};_globallisteners=[]};this.resetEventListeners();this.addEventListener=function(type,listener,count){try{if(!jwplayer.utils.exists(_listeners[type])){_listeners[type]=[]}if(typeof(listener)=="string"){eval("listener = "+listener)}_listeners[type].push({listener:listener,count:count})}catch(err){jwplayer.utils.log("error",err)}return false};this.removeEventListener=function(type,listener){try{for(var listenerIndex=0;listenerIndex<_listeners[type].length;listenerIndex++){if(_listeners[type][listenerIndex].listener.toString()==listener.toString()){_listeners[type].splice(listenerIndex,1);break}}}catch(err){jwplayer.utils.log("error",err)}return false};this.addGlobalListener=function(listener,count){try{if(typeof(listener)=="string"){eval("listener = "+listener)}_globallisteners.push({listener:listener,count:count})}catch(err){jwplayer.utils.log("error",err)}return false};this.removeGlobalListener=function(listener){try{for(var globalListenerIndex=0;globalListenerIndex<_globallisteners.length;globalListenerIndex++){if(_globallisteners[globalListenerIndex].listener.toString()==listener.toString()){_globallisteners.splice(globalListenerIndex,1);break}}}catch(err){jwplayer.utils.log("error",err)}return false};this.sendEvent=function(type,data){if(!jwplayer.utils.exists(data)){data={}}if(_debug){jwplayer.utils.log(type,data)}if(typeof _listeners[type]!="undefined"){for(var listenerIndex=0;listenerIndex<_listeners[type].length;listenerIndex++){try{_listeners[type][listenerIndex].listener(data)}catch(err){jwplayer.utils.log("There was an error while handling a listener: "+err.toString(),_listeners[type][listenerIndex].listener)}if(_listeners[type][listenerIndex]){if(_listeners[type][listenerIndex].count===1){delete _listeners[type][listenerIndex]}else{if(_listeners[type][listenerIndex].count>0){_listeners[type][listenerIndex].count=_listeners[type][listenerIndex].count-1}}}}}for(var globalListenerIndex=0;globalListenerIndex<_globallisteners.length;globalListenerIndex++){try{_globallisteners[globalListenerIndex].listener(data)}catch(err){jwplayer.utils.log("There was an error while handling a listener: "+err.toString(),_globallisteners[globalListenerIndex].listener)}if(_globallisteners[globalListenerIndex]){if(_globallisteners[globalListenerIndex].count===1){delete _globallisteners[globalListenerIndex]}else{if(_globallisteners[globalListenerIndex].count>0){_globallisteners[globalListenerIndex].count=_globallisteners[globalListenerIndex].count-1}}}}}}})(jwplayer);(function(a){var b={};a.utils.animations=function(){};a.utils.animations.transform=function(c,d){c.style.webkitTransform=d;c.style.MozTransform=d;c.style.OTransform=d;c.style.msTransform=d};a.utils.animations.transformOrigin=function(c,d){c.style.webkitTransformOrigin=d;c.style.MozTransformOrigin=d;c.style.OTransformOrigin=d;c.style.msTransformOrigin=d};a.utils.animations.rotate=function(c,d){a.utils.animations.transform(c,["rotate(",d,"deg)"].join(""))};a.utils.cancelAnimation=function(c){delete b[c.id]};a.utils.fadeTo=function(l,f,e,i,h,d){if(b[l.id]!=d&&a.utils.exists(d)){return}var c=new Date().getTime();if(d>c){setTimeout(function(){a.utils.fadeTo(l,f,e,i,0,d)},d-c)}l.style.display="block";if(!a.utils.exists(i)){i=l.style.opacity===""?1:l.style.opacity}if(l.style.opacity==f&&l.style.opacity!==""&&a.utils.exists(d)){if(f===0){l.style.display="none"}return}if(!a.utils.exists(d)){d=c;b[l.id]=d}if(!a.utils.exists(h)){h=0}var j=(c-d)/(e*1000);j=j>1?1:j;var k=f-i;var g=i+(j*k);if(g>1){g=1}else{if(g<0){g=0}}l.style.opacity=g;if(h>0){b[l.id]=d+h*1000;a.utils.fadeTo(l,f,e,i,0,b[l.id]);return}setTimeout(function(){a.utils.fadeTo(l,f,e,i,0,d)},10)}})(jwplayer);(function(a){a.utils.arrays=function(){};a.utils.arrays.indexOf=function(c,d){for(var b=0;b<c.length;b++){if(c[b]==d){return b}}return -1};a.utils.arrays.remove=function(c,d){var b=a.utils.arrays.indexOf(c,d);if(b>-1){c.splice(b,1)}}})(jwplayer);(function(a){a.utils.extensionmap={"3gp":{html5:"video/3gpp",flash:"video"},"3gpp":{html5:"video/3gpp"},"3g2":{html5:"video/3gpp2",flash:"video"},"3gpp2":{html5:"video/3gpp2"},flv:{flash:"video"},f4a:{html5:"audio/mp4"},f4b:{html5:"audio/mp4",flash:"video"},f4v:{html5:"video/mp4",flash:"video"},mov:{html5:"video/quicktime",flash:"video"},m4a:{html5:"audio/mp4",flash:"video"},m4b:{html5:"audio/mp4"},m4p:{html5:"audio/mp4"},m4v:{html5:"video/mp4",flash:"video"},mp4:{html5:"video/mp4",flash:"video"},rbs:{flash:"sound"},aac:{html5:"audio/aac",flash:"video"},mp3:{html5:"audio/mp3",flash:"sound"},ogg:{html5:"audio/ogg"},oga:{html5:"audio/ogg"},ogv:{html5:"video/ogg"},webm:{html5:"video/webm"},m3u8:{html5:"audio/x-mpegurl"},gif:{flash:"image"},jpeg:{flash:"image"},jpg:{flash:"image"},swf:{flash:"image"},png:{flash:"image"},wav:{html5:"audio/x-wav"}}})(jwplayer);(function(e){e.utils.mediaparser=function(){};var g={element:{width:"width",height:"height",id:"id","class":"className",name:"name"},media:{src:"file",preload:"preload",autoplay:"autostart",loop:"repeat",controls:"controls"},source:{src:"file",type:"type",media:"media","data-jw-width":"width","data-jw-bitrate":"bitrate"},video:{poster:"image"}};var f={};e.utils.mediaparser.parseMedia=function(i){return d(i)};function c(j,i){if(!e.utils.exists(i)){i=g[j]}else{e.utils.extend(i,g[j])}return i}function d(m,i){if(f[m.tagName.toLowerCase()]&&!e.utils.exists(i)){return f[m.tagName.toLowerCase()](m)}else{i=c("element",i);var n={};for(var j in i){if(j!="length"){var l=m.getAttribute(j);if(e.utils.exists(l)){n[i[j]]=l}}}var k=m.style["#background-color"];if(k&&!(k=="transparent"||k=="rgba(0, 0, 0, 0)")){n.screencolor=k}return n}}function h(n,k){k=c("media",k);var l=[];var j=e.utils.selectors("source",n);for(var m in j){if(!isNaN(m)){l.push(a(j[m]))}}var o=d(n,k);if(e.utils.exists(o.file)){l[0]={file:o.file}}o.levels=l;return o}function a(k,j){j=c("source",j);var i=d(k,j);i.width=i.width?i.width:0;i.bitrate=i.bitrate?i.bitrate:0;return i}function b(k,j){j=c("video",j);var i=h(k,j);return i}f.media=h;f.audio=h;f.source=a;f.video=b})(jwplayer);(function(a){a.utils.loaderstatus={NEW:"NEW",LOADING:"LOADING",ERROR:"ERROR",COMPLETE:"COMPLETE"};a.utils.scriptloader=function(c){var d=a.utils.loaderstatus.NEW;var b=new a.events.eventdispatcher();a.utils.extend(this,b);this.load=function(){if(d==a.utils.loaderstatus.NEW){d=a.utils.loaderstatus.LOADING;var e=document.createElement("script");e.onload=function(f){d=a.utils.loaderstatus.COMPLETE;b.sendEvent(a.events.COMPLETE)};e.onerror=function(f){d=a.utils.loaderstatus.ERROR;b.sendEvent(a.events.ERROR)};e.onreadystatechange=function(){if(e.readyState=="loaded"||e.readyState=="complete"){d=a.utils.loaderstatus.COMPLETE;b.sendEvent(a.events.COMPLETE)}};document.getElementsByTagName("head")[0].appendChild(e);e.src=c}};this.getStatus=function(){return d}}})(jwplayer);(function(a){a.utils.selectors=function(b,e){if(!a.utils.exists(e)){e=document}b=a.utils.strings.trim(b);var c=b.charAt(0);if(c=="#"){return e.getElementById(b.substr(1))}else{if(c=="."){if(e.getElementsByClassName){return e.getElementsByClassName(b.substr(1))}else{return a.utils.selectors.getElementsByTagAndClass("*",b.substr(1))}}else{if(b.indexOf(".")>0){var d=b.split(".");return a.utils.selectors.getElementsByTagAndClass(d[0],d[1])}else{return e.getElementsByTagName(b)}}}return null};a.utils.selectors.getElementsByTagAndClass=function(e,h,g){var j=[];if(!a.utils.exists(g)){g=document}var f=g.getElementsByTagName(e);for(var d=0;d<f.length;d++){if(a.utils.exists(f[d].className)){var c=f[d].className.split(" ");for(var b=0;b<c.length;b++){if(c[b]==h){j.push(f[d])}}}}return j}})(jwplayer);(function(a){a.utils.strings=function(){};a.utils.strings.trim=function(b){return b.replace(/^\s*/,"").replace(/\s*$/,"")};a.utils.strings.pad=function(c,d,b){if(!b){b="0"}while(c.length<d){c=b+c}return c};a.utils.strings.serialize=function(b){if(b==null){return null}else{if(b=="true"){return true}else{if(b=="false"){return false}else{if(isNaN(Number(b))||b.length>5||b.length==0){return b}else{return Number(b)}}}}};a.utils.strings.seconds=function(d){d=d.replace(",",".");var b=d.split(":");var c=0;if(d.substr(-1)=="s"){c=Number(d.substr(0,d.length-1))}else{if(d.substr(-1)=="m"){c=Number(d.substr(0,d.length-1))*60}else{if(d.substr(-1)=="h"){c=Number(d.substr(0,d.length-1))*3600}else{if(b.length>1){c=Number(b[b.length-1]);c+=Number(b[b.length-2])*60;if(b.length==3){c+=Number(b[b.length-3])*3600}}else{c=Number(d)}}}}return c};a.utils.strings.xmlAttribute=function(b,c){for(var d in b.attributes){if(b.attributes[d].name&&b.attributes[d].name.toLowerCase()==c.toLowerCase()){return b.attributes[d].value.toString()}}return""};a.utils.strings.jsonToString=function(f){var h=h||{};if(h&&h.stringify){return h.stringify(f)}var c=typeof(f);if(c!="object"||f===null){if(c=="string"){f='"'+f+'"'}else{return String(f)}}else{var g=[],b=(f&&f.constructor==Array);for(var d in f){var e=f[d];switch(typeof(e)){case"string":e='"'+e+'"';break;case"object":if(a.utils.exists(e)){e=a.utils.strings.jsonToString(e)}break}if(b){if(typeof(e)!="function"){g.push(String(e))}}else{if(typeof(e)!="function"){g.push('"'+d+'":'+String(e))}}}if(b){return"["+String(g)+"]"}else{return"{"+String(g)+"}"}}}})(jwplayer);(function(c){var d=new RegExp(/^(#|0x)[0-9a-fA-F]{3,6}/);c.utils.typechecker=function(g,f){f=!c.utils.exists(f)?b(g):f;return e(g,f)};function b(f){var g=["true","false","t","f"];if(g.toString().indexOf(f.toLowerCase().replace(" ",""))>=0){return"boolean"}else{if(d.test(f)){return"color"}else{if(!isNaN(parseInt(f,10))&&parseInt(f,10).toString().length==f.length){return"integer"}else{if(!isNaN(parseFloat(f))&&parseFloat(f).toString().length==f.length){return"float"}}}}return"string"}function e(g,f){if(!c.utils.exists(f)){return g}switch(f){case"color":if(g.length>0){return a(g)}return null;case"integer":return parseInt(g,10);case"float":return parseFloat(g);case"boolean":if(g.toLowerCase()=="true"){return true}else{if(g=="1"){return true}}return false}return g}function a(f){switch(f.toLowerCase()){case"blue":return parseInt("0000FF",16);case"green":return parseInt("00FF00",16);case"red":return parseInt("FF0000",16);case"cyan":return parseInt("00FFFF",16);case"magenta":return parseInt("FF00FF",16);case"yellow":return parseInt("FFFF00",16);case"black":return parseInt("000000",16);case"white":return parseInt("FFFFFF",16);default:f=f.replace(/(#|0x)?([0-9A-F]{3,6})$/gi,"$2");if(f.length==3){f=f.charAt(0)+f.charAt(0)+f.charAt(1)+f.charAt(1)+f.charAt(2)+f.charAt(2)}return parseInt(f,16)}return parseInt("000000",16)}})(jwplayer);(function(a){a.utils.parsers=function(){}})(jwplayer);(function(a){a.utils.parsers.jwparser=function(){};a.utils.parsers.jwparser.PREFIX="jwplayer";a.utils.parsers.jwparser.parseEntry=function(c,d){for(var b in c.childNodes){if(c.childNodes[b].prefix==a.utils.parsers.jwparser.PREFIX){d[c.childNodes[b].localName]=a.utils.strings.serialize(c.childNodes[b].textContent)}if(!d.file&&String(d.link).toLowerCase().indexOf("youtube")>-1){d.file=d.link}}return d};a.utils.parsers.jwparser.getProvider=function(c){if(c.type){return c.type}else{if(c.file.indexOf("youtube.com/w")>-1||c.file.indexOf("youtube.com/v")>-1||c.file.indexOf("youtu.be/")>-1){return"youtube"}else{if(c.streamer&&c.streamer.indexOf("rtmp")==0){return"rtmp"}else{if(c.streamer&&c.streamer.indexOf("http")==0){return"http"}else{var b=a.utils.strings.extension(c.file);if(extensions.hasOwnProperty(b)){return extensions[b]}}}}}return""}})(jwplayer);(function(a){a.utils.parsers.mediaparser=function(){};a.utils.parsers.mediaparser.PREFIX="media";a.utils.parsers.mediaparser.parseGroup=function(d,f){var e=false;for(var c in d.childNodes){if(d.childNodes[c].prefix==a.utils.parsers.mediaparser.PREFIX){if(!d.childNodes[c].localName){continue}switch(d.childNodes[c].localName.toLowerCase()){case"content":if(!e){f.file=a.utils.strings.xmlAttribute(d.childNodes[c],"url")}if(d.childNodes[c].attributes.duration){f.duration=a.utils.strings.seconds(a.utils.strings.xmlAttribute(d.childNodes[c],"duration"))}if(d.childNodes[c].attributes.start){f.start=a.utils.strings.seconds(a.utils.strings.xmlAttribute(d.childNodes[c],"start"))}if(d.childNodes[c].childNodes&&d.childNodes[c].childNodes.length>0){f=a.utils.parsers.mediaparser.parseGroup(d.childNodes[c],f)}if(d.childNodes[c].attributes.width||d.childNodes[c].attributes.bitrate){if(!f.levels){f.levels=[]}f.levels.push({width:a.utils.strings.xmlAttribute(d.childNodes[c],"width"),bitrate:a.utils.strings.xmlAttribute(d.childNodes[c],"bitrate"),file:a.utils.strings.xmlAttribute(d.childNodes[c],"url")})}break;case"title":f.title=d.childNodes[c].textContent;break;case"description":f.description=d.childNodes[c].textContent;break;case"keywords":f.tags=d.childNodes[c].textContent;break;case"thumbnail":f.image=a.utils.strings.xmlAttribute(d.childNodes[c],"url");break;case"credit":f.author=d.childNodes[c].textContent;break;case"player":var b=d.childNodes[c].url;if(b.indexOf("youtube.com")>=0||b.indexOf("youtu.be")>=0){e=true;f.file=a.utils.strings.xmlAttribute(d.childNodes[c],"url")}break;case"group":f=a.utils.parsers.mediaparser.parseGroup(d.childNodes[c],f);break}}}return f}})(jwplayer);(function(b){b.utils.parsers.rssparser=function(){};b.utils.parsers.rssparser.parse=function(f){var c=[];for(var e in f.childNodes){if(f.childNodes[e].localName&&f.childNodes[e].localName.toLowerCase()=="channel"){for(var d in f.childNodes[e].childNodes){if(f.childNodes[e].childNodes[d].localName&&f.childNodes[e].childNodes[d].localName.toLowerCase()=="item"){c.push(a(f.childNodes[e].childNodes[d]))}}}}return c};function a(d){var e={};for(var c in d.childNodes){if(!d.childNodes[c].localName){continue}switch(d.childNodes[c].localName.toLowerCase()){case"enclosure":e.file=b.utils.strings.xmlAttribute(d.childNodes[c],"url");break;case"title":e.title=d.childNodes[c].textContent;break;case"pubdate":e.date=d.childNodes[c].textContent;break;case"description":e.description=d.childNodes[c].textContent;break;case"link":e.link=d.childNodes[c].textContent;break;case"category":if(e.tags){e.tags+=d.childNodes[c].textContent}else{e.tags=d.childNodes[c].textContent}break}}e=b.utils.parsers.mediaparser.parseGroup(d,e);e=b.utils.parsers.jwparser.parseEntry(d,e);return new b.html5.playlistitem(e)}})(jwplayer);(function(a){var c={};var b={};a.plugins=function(){};a.plugins.loadPlugins=function(e,d){b[e]=new a.plugins.pluginloader(new a.plugins.model(c),d);return b[e]};a.plugins.registerPlugin=function(h,f,e){var d=a.utils.getPluginName(h);if(c[d]){c[d].registerPlugin(h,f,e)}else{a.utils.log("A plugin ("+h+") was registered with the player that was not loaded. Please check your configuration.");for(var g in b){b[g].pluginFailed()}}}})(jwplayer);(function(a){a.plugins.model=function(b){this.addPlugin=function(c){var d=a.utils.getPluginName(c);if(!b[d]){b[d]=new a.plugins.plugin(c)}return b[d]}}})(jwplayer);(function(a){a.plugins.pluginmodes={FLASH:"FLASH",JAVASCRIPT:"JAVASCRIPT",HYBRID:"HYBRID"};a.plugins.plugin=function(b){var d="http://plugins.longtailvideo.com";var i=a.utils.loaderstatus.NEW;var j;var h;var k;var c=new a.events.eventdispatcher();a.utils.extend(this,c);function e(){switch(a.utils.getPluginPathType(b)){case a.utils.pluginPathType.ABSOLUTE:return b;case a.utils.pluginPathType.RELATIVE:return a.utils.getAbsolutePath(b,window.location.href);case a.utils.pluginPathType.CDN:var m=a.utils.getPluginName(b);var l=a.utils.getPluginVersion(b);return d+"/"+a.version.split(".")[0]+"/"+m+"/"+m+(l!==""?("-"+l):"")+".js"}}function g(l){k=setTimeout(function(){i=a.utils.loaderstatus.COMPLETE;c.sendEvent(a.events.COMPLETE)},1000)}function f(l){i=a.utils.loaderstatus.ERROR;c.sendEvent(a.events.ERROR)}this.load=function(){if(i==a.utils.loaderstatus.NEW){if(b.lastIndexOf(".swf")>0){j=b;i=a.utils.loaderstatus.COMPLETE;c.sendEvent(a.events.COMPLETE);return}i=a.utils.loaderstatus.LOADING;var l=new a.utils.scriptloader(e());l.addEventListener(a.events.COMPLETE,g);l.addEventListener(a.events.ERROR,f);l.load()}};this.registerPlugin=function(n,m,l){if(k){clearTimeout(k);k=undefined}if(m&&l){j=l;h=m}else{if(typeof m=="string"){j=m}else{if(typeof m=="function"){h=m}else{if(!m&&!l){j=n}}}}i=a.utils.loaderstatus.COMPLETE;c.sendEvent(a.events.COMPLETE)};this.getStatus=function(){return i};this.getPluginName=function(){return a.utils.getPluginName(b)};this.getFlashPath=function(){if(j){switch(a.utils.getPluginPathType(j)){case a.utils.pluginPathType.ABSOLUTE:return j;case a.utils.pluginPathType.RELATIVE:if(b.lastIndexOf(".swf")>0){return a.utils.getAbsolutePath(j,window.location.href)}return a.utils.getAbsolutePath(j,e());case a.utils.pluginPathType.CDN:if(j.indexOf("-")>-1){return j+"h"}return j+"-h"}}return null};this.getJS=function(){return h};this.getPluginmode=function(){if(typeof j!="undefined"&&typeof h!="undefined"){return a.plugins.pluginmodes.HYBRID}else{if(typeof j!="undefined"){return a.plugins.pluginmodes.FLASH}else{if(typeof h!="undefined"){return a.plugins.pluginmodes.JAVASCRIPT}}}};this.getNewInstance=function(m,l,n){return new h(m,l,n)};this.getURL=function(){return b}}})(jwplayer);(function(a){a.plugins.pluginloader=function(h,e){var g={};var j=a.utils.loaderstatus.NEW;var d=false;var b=false;var c=new a.events.eventdispatcher();a.utils.extend(this,c);function f(){if(!b){b=true;j=a.utils.loaderstatus.COMPLETE;c.sendEvent(a.events.COMPLETE)}}function i(){if(!b){var l=0;for(plugin in g){var k=g[plugin].getStatus();if(k==a.utils.loaderstatus.LOADING||k==a.utils.loaderstatus.NEW){l++}}if(l==0){f()}}}this.setupPlugins=function(m,k,r){var l={length:0,plugins:{}};var o={length:0,plugins:{}};for(var n in g){var p=g[n].getPluginName();if(g[n].getFlashPath()){l.plugins[g[n].getFlashPath()]=k.plugins[n];l.plugins[g[n].getFlashPath()].pluginmode=g[n].getPluginmode();l.length++}if(g[n].getJS()){var q=document.createElement("div");q.id=m.id+"_"+p;q.style.position="absolute";q.style.zIndex=o.length+10;o.plugins[p]=g[n].getNewInstance(m,k.plugins[n],q);o.length++;if(typeof o.plugins[p].resize!="undefined"){m.onReady(r(o.plugins[p],q,true));m.onResize(r(o.plugins[p],q))}}}m.plugins=o.plugins;return l};this.load=function(){j=a.utils.loaderstatus.LOADING;d=true;for(var k in e){if(a.utils.exists(k)){g[k]=h.addPlugin(k);g[k].addEventListener(a.events.COMPLETE,i);g[k].addEventListener(a.events.ERROR,i)}}for(k in g){g[k].load()}d=false;i()};this.pluginFailed=function(){f()};this.getStatus=function(){return j}}})(jwplayer);(function(b){var a=[];b.api=function(d){this.container=d;this.id=d.id;var m={};var r={};var p={};var c=[];var h=undefined;var k=false;var i=[];var o=b.utils.getOuterHTML(d);var q={};var j={};this.getBuffer=function(){return this.callInternal("jwGetBuffer")};this.getContainer=function(){return this.container};function e(t,s){return function(y,u,v,w){var x;if(u){j[y]=u;x="jwplayer('"+t.id+"').callback('"+y+"')"}else{if(!u&&j[y]){delete j[y]}}h.jwDockSetButton(y,x,v,w);return s}}this.getPlugin=function(s){var u=this;var t={};if(s=="dock"){return b.utils.extend(t,{setButton:e(u,t),show:function(){u.callInternal("jwDockShow");return t},hide:function(){u.callInternal("jwDockHide");return t},onShow:function(v){u.componentListener("dock",b.api.events.JWPLAYER_COMPONENT_SHOW,v);return t},onHide:function(v){u.componentListener("dock",b.api.events.JWPLAYER_COMPONENT_HIDE,v);return t}})}else{if(s=="controlbar"){return b.utils.extend(t,{show:function(){u.callInternal("jwControlbarShow");return t},hide:function(){u.callInternal("jwControlbarHide");return t},onShow:function(v){u.componentListener("controlbar",b.api.events.JWPLAYER_COMPONENT_SHOW,v);return t},onHide:function(v){u.componentListener("controlbar",b.api.events.JWPLAYER_COMPONENT_HIDE,v);return t}})}else{if(s=="display"){return b.utils.extend(t,{show:function(){u.callInternal("jwDisplayShow");return t},hide:function(){u.callInternal("jwDisplayHide");return t},onShow:function(v){u.componentListener("display",b.api.events.JWPLAYER_COMPONENT_SHOW,v);return t},onHide:function(v){u.componentListener("display",b.api.events.JWPLAYER_COMPONENT_HIDE,v);return t}})}else{return this.plugins[s]}}}};this.callback=function(s){if(j[s]){return j[s]()}};this.getDuration=function(){return this.callInternal("jwGetDuration")};this.getFullscreen=function(){return this.callInternal("jwGetFullscreen")};this.getHeight=function(){return this.callInternal("jwGetHeight")};this.getLockState=function(){return this.callInternal("jwGetLockState")};this.getMeta=function(){return this.getItemMeta()};this.getMute=function(){return this.callInternal("jwGetMute")};this.getPlaylist=function(){var t=this.callInternal("jwGetPlaylist");if(this.renderingMode=="flash"){b.utils.deepReplaceKeyName(t,"__dot__",".")}for(var s=0;s<t.length;s++){if(!b.utils.exists(t[s].index)){t[s].index=s}}return t};this.getPlaylistItem=function(s){if(!b.utils.exists(s)){s=this.getCurrentItem()}return this.getPlaylist()[s]};this.getPosition=function(){return this.callInternal("jwGetPosition")};this.getRenderingMode=function(){return this.renderingMode};this.getState=function(){return this.callInternal("jwGetState")};this.getVolume=function(){return this.callInternal("jwGetVolume")};this.getWidth=function(){return this.callInternal("jwGetWidth")};this.setFullscreen=function(s){if(!b.utils.exists(s)){this.callInternal("jwSetFullscreen",!this.callInternal("jwGetFullscreen"))}else{this.callInternal("jwSetFullscreen",s)}return this};this.setMute=function(s){if(!b.utils.exists(s)){this.callInternal("jwSetMute",!this.callInternal("jwGetMute"))}else{this.callInternal("jwSetMute",s)}return this};this.lock=function(){return this};this.unlock=function(){return this};this.load=function(s){this.callInternal("jwLoad",s);return this};this.playlistItem=function(s){this.callInternal("jwPlaylistItem",s);return this};this.playlistPrev=function(){this.callInternal("jwPlaylistPrev");return this};this.playlistNext=function(){this.callInternal("jwPlaylistNext");return this};this.resize=function(t,s){if(this.renderingMode=="html5"){h.jwResize(t,s)}else{this.container.width=t;this.container.height=s}return this};this.play=function(s){if(typeof s=="undefined"){s=this.getState();if(s==b.api.events.state.PLAYING||s==b.api.events.state.BUFFERING){this.callInternal("jwPause")}else{this.callInternal("jwPlay")}}else{this.callInternal("jwPlay",s)}return this};this.pause=function(s){if(typeof s=="undefined"){s=this.getState();if(s==b.api.events.state.PLAYING||s==b.api.events.state.BUFFERING){this.callInternal("jwPause")}else{this.callInternal("jwPlay")}}else{this.callInternal("jwPause",s)}return this};this.stop=function(){this.callInternal("jwStop");return this};this.seek=function(s){this.callInternal("jwSeek",s);return this};this.setVolume=function(s){this.callInternal("jwSetVolume",s);return this};this.onBufferChange=function(s){return this.eventListener(b.api.events.JWPLAYER_MEDIA_BUFFER,s)};this.onBufferFull=function(s){return this.eventListener(b.api.events.JWPLAYER_MEDIA_BUFFER_FULL,s)};this.onError=function(s){return this.eventListener(b.api.events.JWPLAYER_ERROR,s)};this.onFullscreen=function(s){return this.eventListener(b.api.events.JWPLAYER_FULLSCREEN,s)};this.onMeta=function(s){return this.eventListener(b.api.events.JWPLAYER_MEDIA_META,s)};this.onMute=function(s){return this.eventListener(b.api.events.JWPLAYER_MEDIA_MUTE,s)};this.onPlaylist=function(s){return this.eventListener(b.api.events.JWPLAYER_PLAYLIST_LOADED,s)};this.onPlaylistItem=function(s){return this.eventListener(b.api.events.JWPLAYER_PLAYLIST_ITEM,s)};this.onReady=function(s){return this.eventListener(b.api.events.API_READY,s)};this.onResize=function(s){return this.eventListener(b.api.events.JWPLAYER_RESIZE,s)};this.onComplete=function(s){return this.eventListener(b.api.events.JWPLAYER_MEDIA_COMPLETE,s)};this.onSeek=function(s){return this.eventListener(b.api.events.JWPLAYER_MEDIA_SEEK,s)};this.onTime=function(s){return this.eventListener(b.api.events.JWPLAYER_MEDIA_TIME,s)};this.onVolume=function(s){return this.eventListener(b.api.events.JWPLAYER_MEDIA_VOLUME,s)};this.onBuffer=function(s){return this.stateListener(b.api.events.state.BUFFERING,s)};this.onPause=function(s){return this.stateListener(b.api.events.state.PAUSED,s)};this.onPlay=function(s){return this.stateListener(b.api.events.state.PLAYING,s)};this.onIdle=function(s){return this.stateListener(b.api.events.state.IDLE,s)};this.remove=function(){m={};i=[];if(b.utils.getOuterHTML(this.container)!=o){b.api.destroyPlayer(this.id,o)}};this.setup=function(t){if(b.embed){var s=this.id;this.remove();var u=b(s);u.config=t;return new b.embed(u)}return this};this.registerPlugin=function(u,t,s){b.plugins.registerPlugin(u,t,s)};this.setPlayer=function(s,t){h=s;this.renderingMode=t};this.stateListener=function(s,t){if(!r[s]){r[s]=[];this.eventListener(b.api.events.JWPLAYER_PLAYER_STATE,g(s))}r[s].push(t);return this};function g(s){return function(u){var t=u.newstate,w=u.oldstate;if(t==s){var v=r[t];if(v){for(var x=0;x<v.length;x++){if(typeof v[x]=="function"){v[x].call(this,{oldstate:w,newstate:t})}}}}}}this.componentListener=function(s,t,u){if(!p[s]){p[s]={}}if(!p[s][t]){p[s][t]=[];this.eventListener(t,l(s,t))}p[s][t].push(u);return this};function l(s,t){return function(v){if(s==v.component){var u=p[s][t];if(u){for(var w=0;w<u.length;w++){if(typeof u[w]=="function"){u[w].call(this,v)}}}}}}this.addInternalListener=function(s,t){s.jwAddEventListener(t,'function(dat) { jwplayer("'+this.id+'").dispatchEvent("'+t+'", dat); }')};this.eventListener=function(s,t){if(!m[s]){m[s]=[];if(h&&k){this.addInternalListener(h,s)}}m[s].push(t);return this};this.dispatchEvent=function(u){if(m[u]){var t=f(u,arguments[1]);for(var s=0;s<m[u].length;s++){if(typeof m[u][s]=="function"){m[u][s].call(this,t)}}}};function f(u,s){var w=b.utils.extend({},s);if(u==b.api.events.JWPLAYER_FULLSCREEN&&!w.fullscreen){w.fullscreen=w.message=="true"?true:false;delete w.message}else{if(typeof w.data=="object"){w=b.utils.extend(w,w.data);delete w.data}}var t=["position","duration","offset"];for(var v in t){if(w[t[v]]){w[t[v]]=Math.round(w[t[v]]*1000)/1000}}return w}this.callInternal=function(t,s){if(k){if(typeof h!="undefined"&&typeof h[t]=="function"){if(b.utils.exists(s)){return(h[t])(s)}else{return(h[t])()}}return null}else{i.push({method:t,parameters:s})}};this.playerReady=function(u){k=true;if(!h){this.setPlayer(document.getElementById(u.id))}this.container=document.getElementById(this.id);for(var s in m){this.addInternalListener(h,s)}this.eventListener(b.api.events.JWPLAYER_PLAYLIST_ITEM,function(v){q={}});this.eventListener(b.api.events.JWPLAYER_MEDIA_META,function(v){b.utils.extend(q,v.metadata)});this.dispatchEvent(b.api.events.API_READY);while(i.length>0){var t=i.shift();this.callInternal(t.method,t.parameters)}};this.getItemMeta=function(){return q};this.getCurrentItem=function(){return this.callInternal("jwGetPlaylistIndex")};function n(u,w,v){var s=[];if(!w){w=0}if(!v){v=u.length-1}for(var t=w;t<=v;t++){s.push(u[t])}return s}return this};b.api.selectPlayer=function(d){var c;if(!b.utils.exists(d)){d=0}if(d.nodeType){c=d}else{if(typeof d=="string"){c=document.getElementById(d)}}if(c){var e=b.api.playerById(c.id);if(e){return e}else{return b.api.addPlayer(new b.api(c))}}else{if(typeof d=="number"){return b.getPlayers()[d]}}return null};b.api.events={API_READY:"jwplayerAPIReady",JWPLAYER_READY:"jwplayerReady",JWPLAYER_FULLSCREEN:"jwplayerFullscreen",JWPLAYER_RESIZE:"jwplayerResize",JWPLAYER_ERROR:"jwplayerError",JWPLAYER_COMPONENT_SHOW:"jwplayerComponentShow",JWPLAYER_COMPONENT_HIDE:"jwplayerComponentHide",JWPLAYER_MEDIA_BUFFER:"jwplayerMediaBuffer",JWPLAYER_MEDIA_BUFFER_FULL:"jwplayerMediaBufferFull",JWPLAYER_MEDIA_ERROR:"jwplayerMediaError",JWPLAYER_MEDIA_LOADED:"jwplayerMediaLoaded",JWPLAYER_MEDIA_COMPLETE:"jwplayerMediaComplete",JWPLAYER_MEDIA_SEEK:"jwplayerMediaSeek",JWPLAYER_MEDIA_TIME:"jwplayerMediaTime",JWPLAYER_MEDIA_VOLUME:"jwplayerMediaVolume",JWPLAYER_MEDIA_META:"jwplayerMediaMeta",JWPLAYER_MEDIA_MUTE:"jwplayerMediaMute",JWPLAYER_PLAYER_STATE:"jwplayerPlayerState",JWPLAYER_PLAYLIST_LOADED:"jwplayerPlaylistLoaded",JWPLAYER_PLAYLIST_ITEM:"jwplayerPlaylistItem"};b.api.events.state={BUFFERING:"BUFFERING",IDLE:"IDLE",PAUSED:"PAUSED",PLAYING:"PLAYING"};b.api.playerById=function(d){for(var c=0;c<a.length;c++){if(a[c].id==d){return a[c]}}return null};b.api.addPlayer=function(c){for(var d=0;d<a.length;d++){if(a[d]==c){return c}}a.push(c);return c};b.api.destroyPlayer=function(g,d){var f=-1;for(var i=0;i<a.length;i++){if(a[i].id==g){f=i;continue}}if(f>=0){var c=document.getElementById(a[f].id);if(document.getElementById(a[f].id+"_wrapper")){c=document.getElementById(a[f].id+"_wrapper")}if(c){if(d){b.utils.setOuterHTML(c,d)}else{var h=document.createElement("div");var e=c.id;if(c.id.indexOf("_wrapper")==c.id.length-8){newID=c.id.substring(0,c.id.length-8)}h.setAttribute("id",e);c.parentNode.replaceChild(h,c)}}a.splice(f,1)}return null};b.getPlayers=function(){return a.slice(0)}})(jwplayer);var _userPlayerReady=(typeof playerReady=="function")?playerReady:undefined;playerReady=function(b){var a=jwplayer.api.playerById(b.id);if(a){a.playerReady(b)}else{jwplayer.api.selectPlayer(b.id).playerReady(b)}if(_userPlayerReady){_userPlayerReady.call(this,b)}};(function(a){a.embed=function(g){var i={width:400,height:300,components:{controlbar:{position:"over"}}};var f=a.utils.mediaparser.parseMedia(g.container);var e=new a.embed.config(a.utils.extend(i,f,g.config),this);var h=a.plugins.loadPlugins(g.id,e.plugins);function c(l,k){for(var j in k){if(typeof l[j]=="function"){(l[j]).call(l,k[j])}}}function d(){if(h.getStatus()==a.utils.loaderstatus.COMPLETE){for(var l=0;l<e.modes.length;l++){if(e.modes[l].type&&a.embed[e.modes[l].type]){var j=e;if(e.modes[l].config){j=a.utils.extend(a.utils.clone(e),e.modes[l].config)}var k=new a.embed[e.modes[l].type](document.getElementById(g.id),e.modes[l],j,h,g);if(k.supportsConfig()){k.embed();c(g,e.events);return g}}}a.utils.log("No suitable players found");new a.embed.logo(a.utils.extend({hide:true},e.components.logo),"none",g.id)}}h.addEventListener(a.events.COMPLETE,d);h.addEventListener(a.events.ERROR,d);h.load();return g};function b(){if(!document.body){return setTimeout(b,15)}var c=a.utils.selectors.getElementsByTagAndClass("video","jwplayer");for(var d=0;d<c.length;d++){var e=c[d];a(e.id).setup({})}}b()})(jwplayer);(function(e){function h(){return[{type:"flash",src:"/jwplayer/player.swf"},{type:"html5"},{type:"download"}]}var a={players:"modes",autoplay:"autostart"};function b(m){var l=m.toLowerCase();var k=["left","right","top","bottom"];for(var j=0;j<k.length;j++){if(l==k[j]){return true}}return false}function c(k){var j=false;j=(k instanceof Array)||(typeof k=="object"&&!k.position&&!k.size);return j}function i(j){if(typeof j=="string"){if(parseInt(j).toString()==j||j.toLowerCase().indexOf("px")>-1){return parseInt(j)}}return j}var g=["playlist","dock","controlbar","logo","display"];function f(j){var m={};switch(e.utils.typeOf(j.plugins)){case"object":for(var l in j.plugins){m[e.utils.getPluginName(l)]=l}break;case"string":var n=j.plugins.split(",");for(var k=0;k<n.length;k++){m[e.utils.getPluginName(n[k])]=n[k]}break}return m}function d(n,m,l,j){if(e.utils.typeOf(n[m])!="object"){n[m]={}}var k=n[m][l];if(e.utils.typeOf(k)!="object"){n[m][l]=k={}}if(j){if(m=="plugins"){var o=e.utils.getPluginName(l);k[j]=n[o+"."+j];delete n[o+"."+j]}else{k[j]=n[l+"."+j];delete n[l+"."+j]}}}e.embed.deserialize=function(k){var l=f(k);for(var j in l){d(k,"plugins",l[j])}for(var o in k){if(o.indexOf(".")>-1){var n=o.split(".");var m=n[0];var o=n[1];if(e.utils.isInArray(g,m)){d(k,"components",m,o)}else{if(l[m]){d(k,"plugins",l[m],o)}}}}return k};e.embed.config=function(j,t){var s=e.utils.extend({},j);var q;if(c(s.playlist)){q=s.playlist;delete s.playlist}s=e.embed.deserialize(s);s.height=i(s.height);s.width=i(s.width);if(typeof s.plugins=="string"){var k=s.plugins.split(",");if(typeof s.plugins!="object"){s.plugins={}}for(var o=0;o<k.length;o++){var p=e.utils.getPluginName(k[o]);if(typeof s[p]=="object"){s.plugins[k[o]]=s[p];delete s[p]}else{s.plugins[k[o]]={}}}}for(var r=0;r<g.length;r++){var n=g[r];if(e.utils.exists(s[n])){if(typeof s[n]!="object"){if(!s.components[n]){s.components[n]={}}if(n=="logo"){s.components[n].file=s[n]}else{s.components[n].position=s[n]}delete s[n]}else{if(!s.components[n]){s.components[n]={}}e.utils.extend(s.components[n],s[n]);delete s[n]}}if(typeof s[n+"size"]!="undefined"){if(!s.components[n]){s.components[n]={}}s.components[n].size=s[n+"size"];delete s[n+"size"]}}if(typeof s.icons!="undefined"){if(!s.components.display){s.components.display={}}s.components.display.icons=s.icons;delete s.icons}for(var m in a){if(s[m]){if(!s[a[m]]){s[a[m]]=s[m]}delete s[m]}}var l;if(s.flashplayer&&!s.modes){l=h();l[0].src=s.flashplayer;delete s.flashplayer}else{if(s.modes){if(typeof s.modes=="string"){l=h();l[0].src=s.modes}else{if(s.modes instanceof Array){l=s.modes}else{if(typeof s.modes=="object"&&s.modes.type){l=[s.modes]}}}delete s.modes}else{l=h()}}s.modes=l;if(q){s.playlist=q}return s}})(jwplayer);(function(a){a.embed.download=function(c,g,b,d,f){this.embed=function(){var j=a.utils.extend({},b);var p={};var i=b.width?b.width:480;if(typeof i!="number"){i=parseInt(i,10)}var l=b.height?b.height:320;if(typeof l!="number"){l=parseInt(l,10)}var t,n,m;var r={};if(b.playlist&&b.playlist.length){r.file=b.playlist[0].file;n=b.playlist[0].image;r.levels=b.playlist[0].levels}else{r.file=b.file;n=b.image;r.levels=b.levels}if(r.file){t=r.file}else{if(r.levels&&r.levels.length){t=r.levels[0].file}}m=t?"pointer":"auto";var k={display:{style:{cursor:m,width:i,height:l,backgroundColor:"#000",position:"relative",textDecoration:"none",border:"none",display:"block"}},display_icon:{style:{cursor:m,position:"absolute",display:t?"block":"none",top:0,left:0,border:0,margin:0,padding:0,zIndex:3,width:50,height:50,backgroundImage:"url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAALdJREFUeNrs18ENgjAYhmFouDOCcQJGcARHgE10BDcgTOIosAGwQOuPwaQeuFRi2p/3Sb6EC5L3QCxZBgAAAOCorLW1zMn65TrlkH4NcV7QNcUQt7Gn7KIhxA+qNIR81spOGkL8oFJDyLJRdosqKDDkK+iX5+d7huzwM40xptMQMkjIOeRGo+VkEVvIPfTGIpKASfYIfT9iCHkHrBEzf4gcUQ56aEzuGK/mw0rHpy4AAACAf3kJMACBxjAQNRckhwAAAABJRU5ErkJggg==)"}},display_iconBackground:{style:{cursor:m,position:"absolute",display:t?"block":"none",top:((l-50)/2),left:((i-50)/2),border:0,width:50,height:50,margin:0,padding:0,zIndex:2,backgroundImage:"url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAEpJREFUeNrszwENADAIA7DhX8ENoBMZ5KR10EryckCJiIiIiIiIiIiIiIiIiIiIiIh8GmkRERERERERERERERERERERERGRHSPAAPlXH1phYpYaAAAAAElFTkSuQmCC)"}},display_image:{style:{width:i,height:l,display:n?"block":"none",position:"absolute",cursor:m,left:0,top:0,margin:0,padding:0,textDecoration:"none",zIndex:1,border:"none"}}};var h=function(u,w,x){var v=document.createElement(u);if(x){v.id=x}else{v.id=c.id+"_jwplayer_"+w}a.utils.css(v,k[w].style);return v};p.display=h("a","display",c.id);if(t){p.display.setAttribute("href",a.utils.getAbsolutePath(t))}p.display_image=h("img","display_image");p.display_image.setAttribute("alt","Click to download...");if(n){p.display_image.setAttribute("src",a.utils.getAbsolutePath(n))}if(true){p.display_icon=h("div","display_icon");p.display_iconBackground=h("div","display_iconBackground");p.display.appendChild(p.display_image);p.display_iconBackground.appendChild(p.display_icon);p.display.appendChild(p.display_iconBackground)}_css=a.utils.css;_hide=function(u){_css(u,{display:"none"})};function q(u){_imageWidth=p.display_image.naturalWidth;_imageHeight=p.display_image.naturalHeight;s()}function s(){a.utils.stretch(a.utils.stretching.UNIFORM,p.display_image,i,l,_imageWidth,_imageHeight)}p.display_image.onerror=function(u){_hide(p.display_image)};p.display_image.onload=q;c.parentNode.replaceChild(p.display,c);var o=(b.plugins&&b.plugins.logo)?b.plugins.logo:{};p.display.appendChild(new a.embed.logo(b.components.logo,"download",c.id));f.container=document.getElementById(f.id);f.setPlayer(p.display,"download")};this.supportsConfig=function(){if(b){var j=a.utils.getFirstPlaylistItemFromConfig(b);if(typeof j.file=="undefined"&&typeof j.levels=="undefined"){return true}else{if(j.file){return e(j.file,j.provider,j.playlistfile)}else{if(j.levels&&j.levels.length){for(var h=0;h<j.levels.length;h++){if(j.levels[h].file&&e(j.levels[h].file,j.provider,j.playlistfile)){return true}}}}}}else{return true}};function e(i,k,h){if(h){return false}var j=["image","sound","youtube","http"];if(k&&(j.toString().indexOf(k)>-1)){return true}if(!k||(k&&k=="video")){var l=a.utils.extension(i);if(l&&a.utils.extensionmap[l]){return true}}return false}}})(jwplayer);(function(a){a.embed.flash=function(f,g,k,e,i){function l(n,m,o){var p=document.createElement("param");p.setAttribute("name",m);p.setAttribute("value",o);n.appendChild(p)}function j(n,o,m){return function(p){if(m){document.getElementById(i.id+"_wrapper").appendChild(o)}var r=document.getElementById(i.id).getPluginConfig("display");n.resize(r.width,r.height);var q={left:r.x,top:r.y};a.utils.css(o,q)}}function d(o){if(!o){return{}}var q={};for(var n in o){var m=o[n];for(var p in m){q[n+"."+p]=m[p]}}return q}function h(p,o){if(p[o]){var r=p[o];for(var n in r){var m=r[n];if(typeof m=="string"){if(!p[n]){p[n]=m}}else{for(var q in m){if(!p[n+"."+q]){p[n+"."+q]=m[q]}}}}delete p[o]}}function b(p){if(!p){return{}}var s={},r=[];for(var m in p){var o=a.utils.getPluginName(m);var n=p[m];r.push(m);for(var q in n){s[o+"."+q]=n[q]}}s.plugins=r.join(",");return s}function c(o){var m=o.netstreambasepath?"":"netstreambasepath="+encodeURIComponent(window.location.href.split("#")[0])+"&";for(var n in o){if(typeof(o[n])=="object"){m+=n+"="+encodeURIComponent("[[JSON]]"+a.utils.strings.jsonToString(o[n]))+"&"}else{m+=n+"="+encodeURIComponent(o[n])+"&"}}return m.substring(0,m.length-1)}this.embed=function(){k.id=i.id;var x;var p=a.utils.extend({},k);var m=p.width;var v=p.height;if(f.id+"_wrapper"==f.parentNode.id){x=document.getElementById(f.id+"_wrapper")}else{x=document.createElement("div");x.id=f.id+"_wrapper";a.utils.wrap(f,x);a.utils.css(x,{position:"relative",width:m,height:v})}var n=e.setupPlugins(i,p,j);if(n.length>0){a.utils.extend(p,b(n.plugins))}else{delete p.plugins}var q=["height","width","modes","events"];for(var t=0;t<q.length;t++){delete p[q[t]]}var o="opaque";if(p.wmode){o=p.wmode}h(p,"components");h(p,"providers");if(typeof p["dock.position"]!="undefined"){if(p["dock.position"].toString().toLowerCase()=="false"){p.dock=p["dock.position"];delete p["dock.position"]}}var w="#000000";var s;if(a.utils.isIE()){var u='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" bgcolor="'+w+'" width="100%" height="100%" id="'+f.id+'" name="'+f.id+'" tabindex=0"">';u+='<param name="movie" value="'+g.src+'">';u+='<param name="allowfullscreen" value="true">';u+='<param name="allowscriptaccess" value="always">';u+='<param name="seamlesstabbing" value="true">';u+='<param name="wmode" value="'+o+'">';u+='<param name="flashvars" value="'+c(p)+'">';u+="</object>";a.utils.setOuterHTML(f,u);s=document.getElementById(f.id)}else{var r=document.createElement("object");r.setAttribute("type","application/x-shockwave-flash");r.setAttribute("data",g.src);r.setAttribute("width","100%");r.setAttribute("height","100%");r.setAttribute("bgcolor","#000000");r.setAttribute("id",f.id);r.setAttribute("name",f.id);r.setAttribute("tabindex",0);l(r,"allowfullscreen","true");l(r,"allowscriptaccess","always");l(r,"seamlesstabbing","true");l(r,"wmode",o);l(r,"flashvars",c(p));f.parentNode.replaceChild(r,f);s=r}i.container=s;i.setPlayer(s,"flash")};this.supportsConfig=function(){if(a.utils.hasFlash()){if(k){var n=a.utils.getFirstPlaylistItemFromConfig(k);if(typeof n.file=="undefined"&&typeof n.levels=="undefined"){return true}else{if(n.file){return flashCanPlay(n.file,n.provider)}else{if(n.levels&&n.levels.length){for(var m=0;m<n.levels.length;m++){if(n.levels[m].file&&flashCanPlay(n.levels[m].file,n.provider)){return true}}}}}}else{return true}}return false};flashCanPlay=function(m,o){var n=["video","http","sound","image"];if(o&&(n.toString().indexOf(o<0))){return true}var p=a.utils.extension(m);if(!p){return true}if(a.utils.exists(a.utils.extensionmap[p])&&!a.utils.exists(a.utils.extensionmap[p].flash)){return false}return true}}})(jwplayer);(function(a){a.embed.html5=function(c,g,b,d,f){function e(i,j,h){return function(k){var l=document.getElementById(c.id+"_displayarea");if(h){l.appendChild(j)}var m=l.style;i.resize(parseInt(m.width.replace("px","")),parseInt(m.height.replace("px","")));j.left=m.left;j.top=m.top}}this.embed=function(){if(a.html5){d.setupPlugins(f,b,e);c.innerHTML="";var j=a.utils.extend({screencolor:"0x000000"},b);var h=["plugins","modes","events"];for(var k=0;k<h.length;k++){delete j[h[k]]}if(j.levels&&!j.sources){j.sources=b.levels}if(j.skin&&j.skin.toLowerCase().indexOf(".zip")>0){j.skin=j.skin.replace(/\.zip/i,".xml")}var l=new (a.html5(c)).setup(j);f.container=document.getElementById(f.id);f.setPlayer(l,"html5")}else{return null}};this.supportsConfig=function(){var h=document.createElement("video");if(!!h.canPlayType){if(b){var k=a.utils.getFirstPlaylistItemFromConfig(b);if(typeof k.file=="undefined"&&typeof k.levels=="undefined"){return true}else{if(k.file){return html5CanPlay(h,k.file,k.provider,k.playlistfile)}else{if(k.levels&&k.levels.length){for(var j=0;j<k.levels.length;j++){if(k.levels[j].file&&html5CanPlay(h,k.levels[j].file,k.provider,k.playlistfile)){return true}}}}}}else{return true}}return false};html5CanPlay=function(j,i,k,h){if(h){return false}if(k&&k=="youtube"){return true}if(k&&k!="video"&&k!="http"&&k!="sound"){return false}var l=a.utils.extension(i);if(!a.utils.exists(l)||!a.utils.exists(a.utils.extensionmap[l])){return true}if(!a.utils.exists(a.utils.extensionmap[l].html5)){return false}if(a.utils.isLegacyAndroid()&&l.match(/m4v|mp4/)){return true}return browserCanPlay(j,a.utils.extensionmap[l].html5)};browserCanPlay=function(i,h){if(!h){return true}if(i.canPlayType(h)){return true}else{if(h=="audio/mp3"&&navigator.userAgent.match(/safari/i)){return i.canPlayType("audio/mpeg")}else{return false}}}}})(jwplayer);(function(a){a.embed.logo=function(l,k,d){var i={prefix:"http://l.longtailvideo.com/"+k+"/",file:"logo.png",link:"http://www.longtailvideo.com/players/jw-flv-player/",margin:8,out:0.5,over:1,timeout:5,hide:false,position:"bottom-left"};_css=a.utils.css;var b;var h;j();function j(){n();c();f()}function n(){if(i.prefix){var p=a.version.split(/\W/).splice(0,2).join("/");if(i.prefix.indexOf(p)<0){i.prefix+=p+"/"}}h=a.utils.extend({},i)}function o(){var r={border:"none",textDecoration:"none",position:"absolute",cursor:"pointer",zIndex:10};r.display=h.hide?"none":"block";var q=h.position.toLowerCase().split("-");for(var p in q){r[q[p]]=h.margin}return r}function c(){b=document.createElement("img");b.id=d+"_jwplayer_logo";b.style.display="none";b.onload=function(p){_css(b,o());e()};if(!h.file){return}if(h.file.indexOf("http://")===0){b.src=h.file}else{b.src=h.prefix+h.file}}if(!h.file){return}function f(){if(h.link){b.onmouseover=g;b.onmouseout=e;b.onclick=m}else{this.mouseEnabled=false}}function m(p){if(typeof p!="undefined"){p.preventDefault();p.stopPropagation()}if(h.link){window.open(h.link,"_self")}return}function e(p){if(h.link){b.style.opacity=h.out}return}function g(p){if(h.hide){b.style.opacity=h.over}return}return b}})(jwplayer);(function(a){a.html5=function(b){var c=b;this.setup=function(d){a.utils.extend(this,new a.html5.api(c,d));return this};return this}})(jwplayer);(function(b){var d=b.utils;var c=d.css;b.html5.view=function(q,p,f){var t=q;var m=p;var w=f;var v;var g;var B;var r;var C;var o;var z;function y(){v=document.createElement("div");v.id=m.id;v.className=m.className;_videowrapper=document.createElement("div");_videowrapper.id=v.id+"_video_wrapper";m.id=v.id+"_video";c(v,{position:"relative",height:w.height,width:w.width,padding:0,backgroundColor:D(),zIndex:0});function D(){if(t.skin.getComponentSettings("display")&&t.skin.getComponentSettings("display").backgroundcolor){return t.skin.getComponentSettings("display").backgroundcolor}return parseInt("000000",16)}c(m,{width:w.width,height:w.height,top:0,left:0,zIndex:1,margin:"auto",display:"block"});c(_videowrapper,{overflow:"hidden",position:"absolute",top:0,left:0,bottom:0,right:0});d.wrap(m,v);d.wrap(m,_videowrapper);r=document.createElement("div");r.id=v.id+"_displayarea";v.appendChild(r)}function j(){for(var D=0;D<w.plugins.order.length;D++){var E=w.plugins.order[D];if(d.exists(w.plugins.object[E].getDisplayElement)){w.plugins.object[E].height=d.parseDimension(w.plugins.object[E].getDisplayElement().style.height);w.plugins.object[E].width=d.parseDimension(w.plugins.object[E].getDisplayElement().style.width);w.plugins.config[E].currentPosition=w.plugins.config[E].position}}u()}function l(D){c(r,{display:w.getMedia().hasChrome()?"none":"block"})}function u(E){var G=w.getMedia()?w.getMedia().getDisplayElement():null;if(d.exists(G)){if(z!=G){if(z&&z.parentNode){z.parentNode.replaceChild(G,z)}z=G}for(var D=0;D<w.plugins.order.length;D++){var F=w.plugins.order[D];if(d.exists(w.plugins.object[F].getDisplayElement)){if(w.getMedia().hasChrome()){w.plugins.config[F].currentPosition=b.html5.view.positions.NONE}else{w.plugins.config[F].currentPosition=w.plugins.config[F].position}}}}i(w.width,w.height)}this.setup=function(){if(w&&w.getMedia()){m=w.getMedia().getDisplayElement()}y();j();t.jwAddEventListener(b.api.events.JWPLAYER_PLAYER_STATE,l);t.jwAddEventListener(b.api.events.JWPLAYER_MEDIA_LOADED,u);t.jwAddEventListener(b.api.events.JWPLAYER_MEDIA_META,function(){x()});var D;if(d.exists(window.onresize)){D=window.onresize}window.onresize=function(E){if(d.exists(D)){try{D(E)}catch(G){}}if(t.jwGetFullscreen()){var F=document.body.getBoundingClientRect();w.width=Math.abs(F.left)+Math.abs(F.right);w.height=window.innerHeight}i(w.width,w.height)}};function h(D){switch(D.keyCode){case 27:if(t.jwGetFullscreen()){t.jwSetFullscreen(false)}break;case 32:if(t.jwGetState()!=b.api.events.state.IDLE&&t.jwGetState()!=b.api.events.state.PAUSED){t.jwPause()}else{t.jwPlay()}break}}function i(G,D){if(v.style.display=="none"){return}var F=[].concat(w.plugins.order);F.reverse();C=F.length+2;if(!w.fullscreen){w.width=G;w.height=D;g=G;B=D;c(r,{top:0,bottom:0,left:0,right:0,width:G,height:D});c(v,{height:B,width:g});var E=n(s,F);if(E.length>0){C+=E.length;n(k,E,true)}}else{if(navigator.vendor.indexOf("Apple")!==0){n(A,F,true)}}x()}function n(I,F,G){var E=[];for(var D=0;D<F.length;D++){var J=F[D];if(d.exists(w.plugins.object[J].getDisplayElement)){if(w.plugins.config[J].currentPosition!=b.html5.view.positions.NONE){var H=I(J,C--);if(!H){E.push(J)}else{w.plugins.object[J].resize(H.width,H.height);if(G){delete H.width;delete H.height}c(w.plugins.object[J].getDisplayElement(),H)}}else{c(w.plugins.object[J].getDisplayElement(),{display:"none"})}}}return E}function s(E,F){if(d.exists(w.plugins.object[E].getDisplayElement)){if(w.plugins.config[E].position&&a(w.plugins.config[E].position)){if(!d.exists(w.plugins.object[E].getDisplayElement().parentNode)){v.appendChild(w.plugins.object[E].getDisplayElement())}var D=e(E);D.zIndex=F;return D}}return false}function k(F,G){if(!d.exists(w.plugins.object[F].getDisplayElement().parentNode)){r.appendChild(w.plugins.object[F].getDisplayElement())}var D=w.width,E=w.height;if(typeof w.width=="string"&&w.width.lastIndexOf("%")>-1){percentage=parseFloat(w.width.substring(0,w.width.lastIndexOf("%")))/100;D=Math.round(window.innerWidth*percentage)}if(typeof w.height=="string"&&w.height.lastIndexOf("%")>-1){percentage=parseFloat(w.height.substring(0,w.height.lastIndexOf("%")))/100;E=Math.round(window.innerHeight*percentage)}return{position:"absolute",width:(D-d.parseDimension(r.style.left)-d.parseDimension(r.style.right)),height:(E-d.parseDimension(r.style.top)-d.parseDimension(r.style.bottom)),zIndex:G}}function A(D,E){return{position:"fixed",width:w.width,height:w.height,zIndex:E}}function x(){if(!d.exists(w.getMedia())){return}r.style.position="absolute";var F=w.getMedia().getDisplayElement();if(F&&F.tagName.toLowerCase()=="video"){F.style.position="absolute";var D,G;if(r.style.width.toString().lastIndexOf("%")>-1||r.style.width.toString().lastIndexOf("%")>-1){var E=r.getBoundingClientRect();D=Math.abs(E.left)+Math.abs(E.right);G=Math.abs(E.top)+Math.abs(E.bottom)}else{D=d.parseDimension(r.style.width);G=d.parseDimension(r.style.height)}if(F.parentNode){F.parentNode.style.left=r.style.left;F.parentNode.style.top=r.style.top}d.stretch(t.jwGetStretching(),F,D,G,F.videoWidth?F.videoWidth:400,F.videoHeight?F.videoHeight:300)}else{w.getMedia().resize(d.parseDimension(r.style.width),d.parseDimension(r.style.height))}}function e(E){var F={position:"absolute",margin:0,padding:0,top:null};var D=w.plugins.config[E].currentPosition.toLowerCase();switch(D.toUpperCase()){case b.html5.view.positions.TOP:F.top=d.parseDimension(r.style.top);F.left=d.parseDimension(r.style.left);F.width=g-d.parseDimension(r.style.left)-d.parseDimension(r.style.right);F.height=w.plugins.object[E].height;r.style[D]=d.parseDimension(r.style[D])+w.plugins.object[E].height+"px";r.style.height=d.parseDimension(r.style.height)-F.height+"px";break;case b.html5.view.positions.RIGHT:F.top=d.parseDimension(r.style.top);F.right=d.parseDimension(r.style.right);F.width=w.plugins.object[E].width;F.height=B-d.parseDimension(r.style.top)-d.parseDimension(r.style.bottom);r.style[D]=d.parseDimension(r.style[D])+w.plugins.object[E].width+"px";r.style.width=d.parseDimension(r.style.width)-F.width+"px";break;case b.html5.view.positions.BOTTOM:F.bottom=d.parseDimension(r.style.bottom);F.left=d.parseDimension(r.style.left);F.width=g-d.parseDimension(r.style.left)-d.parseDimension(r.style.right);F.height=w.plugins.object[E].height;r.style[D]=d.parseDimension(r.style[D])+w.plugins.object[E].height+"px";r.style.height=d.parseDimension(r.style.height)-F.height+"px";break;case b.html5.view.positions.LEFT:F.top=d.parseDimension(r.style.top);F.left=d.parseDimension(r.style.left);F.width=w.plugins.object[E].width;F.height=B-d.parseDimension(r.style.top)-d.parseDimension(r.style.bottom);r.style[D]=d.parseDimension(r.style[D])+w.plugins.object[E].width+"px";r.style.width=d.parseDimension(r.style.width)-F.width+"px";break;default:break}return F}this.resize=i;this.fullscreen=function(G){if(navigator&&navigator.vendor&&navigator.vendor.indexOf("Apple")===0){if(w.getMedia().getDisplayElement().webkitSupportsFullscreen){if(G){try{w.getMedia().getDisplayElement().webkitEnterFullscreen()}catch(F){}}else{try{w.getMedia().getDisplayElement().webkitExitFullscreen()}catch(F){}}}}else{if(G){document.onkeydown=h;clearInterval(o);var E=document.body.getBoundingClientRect();w.width=Math.abs(E.left)+Math.abs(E.right);w.height=window.innerHeight;var D={position:"fixed",width:"100%",height:"100%",top:0,left:0,zIndex:2147483000};c(v,D);D.zIndex=1;c(w.getMedia().getDisplayElement(),D);D.zIndex=2;c(r,D)}else{document.onkeydown="";w.width=g;w.height=B;c(v,{position:"relative",height:w.height,width:w.width,zIndex:0})}i(w.width,w.height)}}};function a(e){return([b.html5.view.positions.TOP,b.html5.view.positions.RIGHT,b.html5.view.positions.BOTTOM,b.html5.view.positions.LEFT].toString().indexOf(e.toUpperCase())>-1)}b.html5.view.positions={TOP:"TOP",RIGHT:"RIGHT",BOTTOM:"BOTTOM",LEFT:"LEFT",OVER:"OVER",NONE:"NONE"}})(jwplayer);(function(a){var b={backgroundcolor:"",margin:10,font:"Arial,sans-serif",fontsize:10,fontcolor:parseInt("000000",16),fontstyle:"normal",fontweight:"bold",buttoncolor:parseInt("ffffff",16),position:a.html5.view.positions.BOTTOM,idlehide:false,layout:{left:{position:"left",elements:[{name:"play",type:"button"},{name:"divider",type:"divider"},{name:"prev",type:"button"},{name:"divider",type:"divider"},{name:"next",type:"button"},{name:"divider",type:"divider"},{name:"elapsed",type:"text"}]},center:{position:"center",elements:[{name:"time",type:"slider"}]},right:{position:"right",elements:[{name:"duration",type:"text"},{name:"blank",type:"button"},{name:"divider",type:"divider"},{name:"mute",type:"button"},{name:"volume",type:"slider"},{name:"divider",type:"divider"},{name:"fullscreen",type:"button"}]}}};_utils=a.utils;_css=_utils.css;_hide=function(c){_css(c,{display:"none"})};_show=function(c){_css(c,{display:"block"})};a.html5.controlbar=function(k,V){var j=k;var D=_utils.extend({},b,j.skin.getComponentSettings("controlbar"),V);if(D.position==a.html5.view.positions.NONE||typeof a.html5.view.positions[D.position]=="undefined"){return}if(_utils.mapLength(j.skin.getComponentLayout("controlbar"))>0){D.layout=j.skin.getComponentLayout("controlbar")}var ac;var P;var ab;var E;var v="none";var g;var i;var ad;var f;var e;var y;var Q={};var p=false;var c={};var Y;var h=false;var o;var d;var S=false;var G=false;var W=new a.html5.eventdispatcher();_utils.extend(this,W);function J(){if(!Y){Y=j.skin.getSkinElement("controlbar","background");if(!Y){Y={width:0,height:0,src:null}}}return Y}function N(){ab=0;E=0;P=0;if(!p){var ak={height:J().height,backgroundColor:D.backgroundcolor};ac=document.createElement("div");ac.id=j.id+"_jwplayer_controlbar";_css(ac,ak)}var aj=(j.skin.getSkinElement("controlbar","capLeft"));var ai=(j.skin.getSkinElement("controlbar","capRight"));if(aj){x("capLeft","left",false,ac)}var al={position:"absolute",height:J().height,left:(aj?aj.width:0),zIndex:0};Z("background",ac,al,"img");if(J().src){Q.background.src=J().src}al.zIndex=1;Z("elements",ac,al);if(ai){x("capRight","right",false,ac)}}this.getDisplayElement=function(){return ac};this.resize=function(ak,ai){_utils.cancelAnimation(ac);document.getElementById(j.id).onmousemove=A;e=ak;y=ai;if(G!=j.jwGetFullscreen()){G=j.jwGetFullscreen();d=undefined}var aj=w();A();I({id:j.id,duration:ad,position:i});u({id:j.id,bufferPercent:f});return aj};this.show=function(){if(h){h=false;_show(ac);T()}};this.hide=function(){if(!h){h=true;_hide(ac);aa()}};function q(){var aj=["timeSlider","volumeSlider","timeSliderRail","volumeSliderRail"];for(var ak in aj){var ai=aj[ak];if(typeof Q[ai]!="undefined"){c[ai]=Q[ai].getBoundingClientRect()}}}function A(ai){if(h){return}if(D.position==a.html5.view.positions.OVER||j.jwGetFullscreen()){clearTimeout(o);switch(j.jwGetState()){case a.api.events.state.PAUSED:case a.api.events.state.IDLE:if(!D.idlehide||_utils.exists(ai)){U()}if(D.idlehide){o=setTimeout(function(){z()},2000)}break;default:if(ai){U()}o=setTimeout(function(){z()},2000);break}}}function z(ai){aa();_utils.cancelAnimation(ac);_utils.fadeTo(ac,0,0.1,1,0)}function U(){T();_utils.cancelAnimation(ac);_utils.fadeTo(ac,1,0,1,0)}function H(ai){return function(){if(S&&d!=ai){d=ai;W.sendEvent(ai,{component:"controlbar",boundingRect:O()})}}}var T=H(a.api.events.JWPLAYER_COMPONENT_SHOW);var aa=H(a.api.events.JWPLAYER_COMPONENT_HIDE);function O(){if(D.position==a.html5.view.positions.OVER||j.jwGetFullscreen()){return _utils.getDimensions(ac)}else{return{x:0,y:0,width:0,height:0}}}function Z(am,al,ak,ai){var aj;if(!p){if(!ai){ai="div"}aj=document.createElement(ai);Q[am]=aj;aj.id=ac.id+"_"+am;al.appendChild(aj)}else{aj=document.getElementById(ac.id+"_"+am)}if(_utils.exists(ak)){_css(aj,ak)}return aj}function M(){ah(D.layout.left);ah(D.layout.right,-1);ah(D.layout.center)}function ah(al,ai){var am=al.position=="right"?"right":"left";var ak=_utils.extend([],al.elements);if(_utils.exists(ai)){ak.reverse()}for(var aj=0;aj<ak.length;aj++){C(ak[aj],am)}}function K(){return P++}function C(am,ao){var al,aj,ak,ai,aq;if(am.type=="divider"){x("divider"+K(),ao,true,undefined,undefined,am.width,am.element);return}switch(am.name){case"play":x("playButton",ao,false);x("pauseButton",ao,true);R("playButton","jwPlay");R("pauseButton","jwPause");break;case"prev":x("prevButton",ao,true);R("prevButton","jwPlaylistPrev");break;case"stop":x("stopButton",ao,true);R("stopButton","jwStop");break;case"next":x("nextButton",ao,true);R("nextButton","jwPlaylistNext");break;case"elapsed":x("elapsedText",ao,true);break;case"time":aj=!_utils.exists(j.skin.getSkinElement("controlbar","timeSliderCapLeft"))?0:j.skin.getSkinElement("controlbar","timeSliderCapLeft").width;ak=!_utils.exists(j.skin.getSkinElement("controlbar","timeSliderCapRight"))?0:j.skin.getSkinElement("controlbar","timeSliderCapRight").width;al=ao=="left"?aj:ak;ai=j.skin.getSkinElement("controlbar","timeSliderRail").width+aj+ak;aq={height:J().height,position:"absolute",top:0,width:ai};aq[ao]=ao=="left"?ab:E;var an=Z("timeSlider",Q.elements,aq);x("timeSliderCapLeft",ao,true,an,ao=="left"?0:al);x("timeSliderRail",ao,false,an,al);x("timeSliderBuffer",ao,false,an,al);x("timeSliderProgress",ao,false,an,al);x("timeSliderThumb",ao,false,an,al);x("timeSliderCapRight",ao,true,an,ao=="right"?0:al);X("time");break;case"fullscreen":x("fullscreenButton",ao,false);x("normalscreenButton",ao,true);R("fullscreenButton","jwSetFullscreen",true);R("normalscreenButton","jwSetFullscreen",false);break;case"volume":aj=!_utils.exists(j.skin.getSkinElement("controlbar","volumeSliderCapLeft"))?0:j.skin.getSkinElement("controlbar","volumeSliderCapLeft").width;ak=!_utils.exists(j.skin.getSkinElement("controlbar","volumeSliderCapRight"))?0:j.skin.getSkinElement("controlbar","volumeSliderCapRight").width;al=ao=="left"?aj:ak;ai=j.skin.getSkinElement("controlbar","volumeSliderRail").width+aj+ak;aq={height:J().height,position:"absolute",top:0,width:ai};aq[ao]=ao=="left"?ab:E;var ap=Z("volumeSlider",Q.elements,aq);x("volumeSliderCapLeft",ao,true,ap,ao=="left"?0:al);x("volumeSliderRail",ao,true,ap,al);x("volumeSliderProgress",ao,false,ap,al);x("volumeSliderCapRight",ao,true,ap,ao=="right"?0:al);X("volume");break;case"mute":x("muteButton",ao,false);x("unmuteButton",ao,true);R("muteButton","jwSetMute",true);R("unmuteButton","jwSetMute",false);break;case"duration":x("durationText",ao,true);break}}function x(al,ao,aj,ar,am,ai,ak){if(_utils.exists(j.skin.getSkinElement("controlbar",al))||al.indexOf("Text")>0||al.indexOf("divider")===0){var an={height:J().height,position:"absolute",display:"block",top:0};if((al.indexOf("next")===0||al.indexOf("prev")===0)&&j.jwGetPlaylist().length<2){aj=false;an.display="none"}var at;if(al.indexOf("Text")>0){al.innerhtml="00:00";an.font=D.fontsize+"px/"+(J().height+1)+"px "+D.font;an.color=D.fontcolor;an.textAlign="center";an.fontWeight=D.fontweight;an.fontStyle=D.fontstyle;an.cursor="default";at=14+3*D.fontsize}else{if(al.indexOf("divider")===0){if(ai){if(!isNaN(parseInt(ai))){at=parseInt(ai)}}else{if(ak){var ap=j.skin.getSkinElement("controlbar",ak);if(ap){an.background="url("+ap.src+") repeat-x center left";at=ap.width}}else{an.background="url("+j.skin.getSkinElement("controlbar","divider").src+") repeat-x center left";at=j.skin.getSkinElement("controlbar","divider").width}}}else{an.background="url("+j.skin.getSkinElement("controlbar",al).src+") repeat-x center left";at=j.skin.getSkinElement("controlbar",al).width}}if(ao=="left"){an.left=isNaN(am)?ab:am;if(aj){ab+=at}}else{if(ao=="right"){an.right=isNaN(am)?E:am;if(aj){E+=at}}}if(_utils.typeOf(ar)=="undefined"){ar=Q.elements}an.width=at;if(p){_css(Q[al],an)}else{var aq=Z(al,ar,an);if(_utils.exists(j.skin.getSkinElement("controlbar",al+"Over"))){aq.onmouseover=function(au){aq.style.backgroundImage=["url(",j.skin.getSkinElement("controlbar",al+"Over").src,")"].join("")};aq.onmouseout=function(au){aq.style.backgroundImage=["url(",j.skin.getSkinElement("controlbar",al).src,")"].join("")}}}}}function F(){j.jwAddEventListener(a.api.events.JWPLAYER_PLAYLIST_LOADED,B);j.jwAddEventListener(a.api.events.JWPLAYER_PLAYLIST_ITEM,s);j.jwAddEventListener(a.api.events.JWPLAYER_MEDIA_BUFFER,u);j.jwAddEventListener(a.api.events.JWPLAYER_PLAYER_STATE,r);j.jwAddEventListener(a.api.events.JWPLAYER_MEDIA_TIME,I);j.jwAddEventListener(a.api.events.JWPLAYER_MEDIA_MUTE,ag);j.jwAddEventListener(a.api.events.JWPLAYER_MEDIA_VOLUME,l);j.jwAddEventListener(a.api.events.JWPLAYER_MEDIA_COMPLETE,L)}function B(){N();M();w();ae()}function s(ai){ad=j.jwGetPlaylist()[ai.index].duration;I({id:j.id,duration:ad,position:0});u({id:j.id,bufferProgress:0})}function ae(){I({id:j.id,duration:j.jwGetDuration(),position:0});u({id:j.id,bufferProgress:0});ag({id:j.id,mute:j.jwGetMute()});r({id:j.id,newstate:a.api.events.state.IDLE});l({id:j.id,volume:j.jwGetVolume()})}function R(ak,al,aj){if(p){return}if(_utils.exists(j.skin.getSkinElement("controlbar",ak))){var ai=Q[ak];if(_utils.exists(ai)){_css(ai,{cursor:"pointer"});if(al=="fullscreen"){ai.onmouseup=function(am){am.stopPropagation();j.jwSetFullscreen(!j.jwGetFullscreen())}}else{ai.onmouseup=function(am){am.stopPropagation();if(_utils.exists(aj)){j[al](aj)}else{j[al]()}}}}}}function X(ai){if(p){return}var aj=Q[ai+"Slider"];_css(Q.elements,{cursor:"pointer"});_css(aj,{cursor:"pointer"});aj.onmousedown=function(ak){v=ai};aj.onmouseup=function(ak){ak.stopPropagation();af(ak.pageX)};aj.onmousemove=function(ak){if(v=="time"){g=true;var al=ak.pageX-c[ai+"Slider"].left-window.pageXOffset;_css(Q.timeSliderThumb,{left:al})}}}function af(aj){g=false;var ai;if(v=="time"){ai=aj-c.timeSliderRail.left+window.pageXOffset;var al=ai/c.timeSliderRail.width*ad;if(al<0){al=0}else{if(al>ad){al=ad-3}}if(j.jwGetState()==a.api.events.state.PAUSED||j.jwGetState()==a.api.events.state.IDLE){j.jwPlay()}j.jwSeek(al)}else{if(v=="volume"){ai=aj-c.volumeSliderRail.left-window.pageXOffset;var ak=Math.round(ai/c.volumeSliderRail.width*100);if(ak<0){ak=0}else{if(ak>100){ak=100}}if(j.jwGetMute()){j.jwSetMute(false)}j.jwSetVolume(ak)}}v="none"}function u(aj){if(_utils.exists(aj.bufferPercent)){f=aj.bufferPercent}if(c.timeSliderRail){var ak=c.timeSliderRail.width;var ai=isNaN(Math.round(ak*f/100))?0:Math.round(ak*f/100);_css(Q.timeSliderBuffer,{width:ai})}}function ag(ai){if(ai.mute){_hide(Q.muteButton);_show(Q.unmuteButton);_hide(Q.volumeSliderProgress)}else{_show(Q.muteButton);_hide(Q.unmuteButton);_show(Q.volumeSliderProgress)}}function r(ai){if(ai.newstate==a.api.events.state.BUFFERING||ai.newstate==a.api.events.state.PLAYING){_show(Q.pauseButton);_hide(Q.playButton)}else{_hide(Q.pauseButton);_show(Q.playButton)}A();if(ai.newstate==a.api.events.state.IDLE){_hide(Q.timeSliderBuffer);_hide(Q.timeSliderProgress);_hide(Q.timeSliderThumb);I({id:j.id,duration:j.jwGetDuration(),position:0})}else{_show(Q.timeSliderBuffer);if(ai.newstate!=a.api.events.state.BUFFERING){_show(Q.timeSliderProgress);_show(Q.timeSliderThumb)}}}function L(ai){u({bufferPercent:0});I(_utils.extend(ai,{position:0,duration:ad}))}function I(al){if(_utils.exists(al.position)){i=al.position}if(_utils.exists(al.duration)){ad=al.duration}var aj=(i===ad===0)?0:i/ad;var am=c.timeSliderRail;if(am){var ai=isNaN(Math.round(am.width*aj))?0:Math.round(am.width*aj);var ak=ai;if(Q.timeSliderProgress){Q.timeSliderProgress.style.width=ai+"px";if(!g){if(Q.timeSliderThumb){Q.timeSliderThumb.style.left=ak+"px"}}}}if(Q.durationText){Q.durationText.innerHTML=n(ad)}if(Q.elapsedText){Q.elapsedText.innerHTML=n(i)}}function n(ai){str="00:00";if(ai>0){str=Math.floor(ai/60)<10?"0"+Math.floor(ai/60)+":":Math.floor(ai/60)+":";str+=Math.floor(ai%60)<10?"0"+Math.floor(ai%60):Math.floor(ai%60)}return str}function m(){var am,aj;var ak=document.getElementById(ac.id+"_elements");if(!ak){return}var al=ak.childNodes;for(var ai in ak.childNodes){if(isNaN(parseInt(ai,10))){continue}if(al[ai].id.indexOf(ac.id+"_divider")===0&&aj&&aj.id.indexOf(ac.id+"_divider")===0&&al[ai].style.backgroundImage==aj.style.backgroundImage){al[ai].style.display="none"}else{if(al[ai].id.indexOf(ac.id+"_divider")===0&&am&&am.style.display!="none"){al[ai].style.display="block"}}if(al[ai].style.display!="none"){aj=al[ai]}am=al[ai]}}function w(){m();if(j.jwGetFullscreen()){_show(Q.normalscreenButton);_hide(Q.fullscreenButton)}else{_hide(Q.normalscreenButton);_show(Q.fullscreenButton)}var aj={width:e};var ai={};if(D.position==a.html5.view.positions.OVER||j.jwGetFullscreen()){aj.left=D.margin;aj.width-=2*D.margin;aj.top=y-J().height-D.margin;aj.height=J().height}var al=j.skin.getSkinElement("controlbar","capLeft");var ak=j.skin.getSkinElement("controlbar","capRight");ai.left=al?al.width:0;ai.width=aj.width-ai.left-(ak?ak.width:0);var am=!_utils.exists(j.skin.getSkinElement("controlbar","timeSliderCapLeft"))?0:j.skin.getSkinElement("controlbar","timeSliderCapLeft").width;_css(Q.timeSliderRail,{width:(ai.width-ab-E),left:am});if(_utils.exists(Q.timeSliderCapRight)){_css(Q.timeSliderCapRight,{left:am+(ai.width-ab-E)})}_css(ac,aj);_css(Q.elements,ai);_css(Q.background,ai);q();return aj}function l(am){if(_utils.exists(Q.volumeSliderRail)){var ak=isNaN(am.volume/100)?1:am.volume/100;var al=_utils.parseDimension(Q.volumeSliderRail.style.width);var ai=isNaN(Math.round(al*ak))?0:Math.round(al*ak);var an=_utils.parseDimension(Q.volumeSliderRail.style.right);var aj=(!_utils.exists(j.skin.getSkinElement("controlbar","volumeSliderCapLeft")))?0:j.skin.getSkinElement("controlbar","volumeSliderCapLeft").width;_css(Q.volumeSliderProgress,{width:ai,left:aj});if(_utils.exists(Q.volumeSliderCapLeft)){_css(Q.volumeSliderCapLeft,{left:0})}}}function t(){N();M();q();p=true;F();D.idlehide=(D.idlehide.toString().toLowerCase()=="true");if(D.position==a.html5.view.positions.OVER&&D.idlehide){ac.style.opacity=0;S=true}else{setTimeout((function(){S=true;T()}),1)}ae()}t();return this}})(jwplayer);(function(b){var a=["width","height","state","playlist","item","position","buffer","duration","volume","mute","fullscreen"];var c=b.utils;b.html5.controller=function(v,t,g,s){var y=v;var A=g;var f=s;var m=t;var C=true;var d=-1;var w=c.exists(A.config.debug)&&(A.config.debug.toString().toLowerCase()=="console");var k=new b.html5.eventdispatcher(m.id,w);c.extend(this,k);function o(F){k.sendEvent(F.type,F)}A.addGlobalListener(o);A.addEventListener(b.api.events.JWPLAYER_MEDIA_BUFFER_FULL,function(){A.getMedia().play()});A.addEventListener(b.api.events.JWPLAYER_MEDIA_TIME,function(F){if(F.position>=A.playlist[A.item].start&&d>=0){A.playlist[A.item].start=d;d=-1}});A.addEventListener(b.api.events.JWPLAYER_MEDIA_COMPLETE,function(F){setTimeout(p,25)});function r(){try{if(A.playlist[A.item].levels[0].file.length>0){if(C||A.state==b.api.events.state.IDLE){A.getMedia().load(A.playlist[A.item]);C=false}else{if(A.state==b.api.events.state.PAUSED){A.getMedia().play()}}}return true}catch(F){k.sendEvent(b.api.events.JWPLAYER_ERROR,F)}return false}function D(){try{if(A.playlist[A.item].levels[0].file.length>0){switch(A.state){case b.api.events.state.PLAYING:case b.api.events.state.BUFFERING:A.getMedia().pause();break}}return true}catch(F){k.sendEvent(b.api.events.JWPLAYER_ERROR,F)}return false}function z(F){try{if(A.playlist[A.item].levels[0].file.length>0){if(typeof F!="number"){F=parseFloat(F)}switch(A.state){case b.api.events.state.IDLE:if(d<0){d=A.playlist[A.item].start;A.playlist[A.item].start=F}r();break;case b.api.events.state.PLAYING:case b.api.events.state.PAUSED:case b.api.events.state.BUFFERING:A.seek(F);break}}return true}catch(G){k.sendEvent(b.api.events.JWPLAYER_ERROR,G)}return false}function l(F){if(!c.exists(F)){F=true}try{A.getMedia().stop(F);return true}catch(G){k.sendEvent(b.api.events.JWPLAYER_ERROR,G)}return false}function i(){try{if(A.playlist[A.item].levels[0].file.length>0){if(A.config.shuffle){e(u())}else{if(A.item+1==A.playlist.length){e(0)}else{e(A.item+1)}}}if(A.state!=b.api.events.state.IDLE){var G=A.state;A.state=b.api.events.state.IDLE;k.sendEvent(b.api.events.JWPLAYER_PLAYER_STATE,{oldstate:G,newstate:b.api.events.state.IDLE})}r();return true}catch(F){k.sendEvent(b.api.events.JWPLAYER_ERROR,F)}return false}function h(){try{if(A.playlist[A.item].levels[0].file.length>0){if(A.config.shuffle){e(u())}else{if(A.item===0){e(A.playlist.length-1)}else{e(A.item-1)}}}if(A.state!=b.api.events.state.IDLE){var G=A.state;A.state=b.api.events.state.IDLE;k.sendEvent(b.api.events.JWPLAYER_PLAYER_STATE,{oldstate:G,newstate:b.api.events.state.IDLE})}r();return true}catch(F){k.sendEvent(b.api.events.JWPLAYER_ERROR,F)}return false}function u(){var F=null;if(A.playlist.length>1){while(!c.exists(F)){F=Math.floor(Math.random()*A.playlist.length);if(F==A.item){F=null}}}else{F=0}return F}function q(G){if(!A.playlist||!A.playlist[G]){return false}try{if(A.playlist[G].levels[0].file.length>0){var H=A.state;if(H!==b.api.events.state.IDLE){if(A.playlist[A.item].provider==A.playlist[G].provider){l(false)}else{l()}}e(G);r()}return true}catch(F){k.sendEvent(b.api.events.JWPLAYER_ERROR,F)}return false}function e(F){A.item=F;C=true;A.setActiveMediaProvider(A.playlist[A.item]);k.sendEvent(b.api.events.JWPLAYER_PLAYLIST_ITEM,{index:F})}function B(G){try{switch(typeof(G)){case"number":A.getMedia().volume(G);break;case"string":A.getMedia().volume(parseInt(G,10));break}return true}catch(F){k.sendEvent(b.api.events.JWPLAYER_ERROR,F)}return false}function n(G){try{if(typeof G=="undefined"){A.getMedia().mute(!A.mute)}else{if(G.toString().toLowerCase()=="true"){A.getMedia().mute(true)}else{A.getMedia().mute(false)}}return true}catch(F){k.sendEvent(b.api.events.JWPLAYER_ERROR,F)}return false}function j(G,F){try{A.width=G;A.height=F;f.resize(G,F);k.sendEvent(b.api.events.JWPLAYER_RESIZE,{width:A.width,height:A.height});return true}catch(H){k.sendEvent(b.api.events.JWPLAYER_ERROR,H)}return false}function x(G){try{if(typeof G=="undefined"){A.fullscreen=!A.fullscreen;f.fullscreen(!A.fullscreen)}else{if(G.toString().toLowerCase()=="true"){A.fullscreen=true;f.fullscreen(true)}else{A.fullscreen=false;f.fullscreen(false)}}k.sendEvent(b.api.events.JWPLAYER_RESIZE,{width:A.width,height:A.height});k.sendEvent(b.api.events.JWPLAYER_FULLSCREEN,{fullscreen:G});return true}catch(F){k.sendEvent(b.api.events.JWPLAYER_ERROR,F)}return false}function E(F){try{l();A.loadPlaylist(F);e(A.item);return true}catch(G){k.sendEvent(b.api.events.JWPLAYER_ERROR,G)}return false}b.html5.controller.repeatoptions={LIST:"LIST",ALWAYS:"ALWAYS",SINGLE:"SINGLE",NONE:"NONE"};function p(){switch(A.config.repeat.toUpperCase()){case b.html5.controller.repeatoptions.SINGLE:r();break;case b.html5.controller.repeatoptions.ALWAYS:if(A.item==A.playlist.length-1&&!A.config.shuffle){q(0)}else{i()}break;case b.html5.controller.repeatoptions.LIST:if(A.item==A.playlist.length-1&&!A.config.shuffle){l();e(0)}else{i()}break;default:l();break}}this.play=r;this.pause=D;this.seek=z;this.stop=l;this.next=i;this.prev=h;this.item=q;this.setVolume=B;this.setMute=n;this.resize=j;this.setFullscreen=x;this.load=E}})(jwplayer);(function(a){a.html5.defaultSkin=function(){this.text='<?xml version="1.0" ?><skin author="LongTail Video" name="Five" version="1.0"><settings><setting name="backcolor" value="0xFFFFFF"/><setting name="frontcolor" value="0x000000"/><setting name="lightcolor" value="0x000000"/><setting name="screencolor" value="0x000000"/></settings><components><component name="controlbar"><settings><setting name="margin" value="20"/><setting name="fontsize" value="11"/></settings><elements><element name="background" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAIAAABvFaqvAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAFJJREFUeNrslLENwAAIwxLU/09j5AiOgD5hVQzNAVY8JK4qEfHMIKBnd2+BQlBINaiRtL/aV2rdzYBsM6CIONbI1NZENTr3RwdB2PlnJgJ6BRgA4hwu5Qg5iswAAAAASUVORK5CYII="/><element name="capLeft" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAYCAIAAAC0rgCNAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAD5JREFUeNosi8ENACAMAgnuv14H0Z8asI19XEjhOiKCMmibVgJTUt7V6fe9KXOtSQCfctJHu2q3/ot79hNgANc2OTz9uTCCAAAAAElFTkSuQmCC"/><element name="capRight" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAYCAIAAAC0rgCNAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAD5JREFUeNosi8ENACAMAgnuv14H0Z8asI19XEjhOiKCMmibVgJTUt7V6fe9KXOtSQCfctJHu2q3/ot79hNgANc2OTz9uTCCAAAAAElFTkSuQmCC"/><element name="divider" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAYCAIAAAC0rgCNAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAD5JREFUeNosi8ENACAMAgnuv14H0Z8asI19XEjhOiKCMmibVgJTUt7V6fe9KXOtSQCfctJHu2q3/ot79hNgANc2OTz9uTCCAAAAAElFTkSuQmCC"/><element name="playButton" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAYCAYAAAAVibZIAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAEhJREFUeNpiYqABYBo1dNRQ+hr6H4jvA3E8NS39j4SpZvh/LJig4YxEGEqy3kET+w+AOGFQRhTJhrEQkGcczfujhg4CQwECDADpTRWU/B3wHQAAAABJRU5ErkJggg=="/><element name="pauseButton" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAYCAYAAAAVibZIAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAChJREFUeNpiYBgFo2DwA0YC8v/R1P4nRu+ooaOGUtnQUTAKhgIACDAAFCwQCfAJ4gwAAAAASUVORK5CYII="/><element name="prevButton" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAYCAYAAAAVibZIAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAEtJREFUeNpiYBgFo2Dog/9QDAPyQHweTYwiQ/2B+D0Wi8g2tB+JTdBQRiIMJVkvEy0iglhDF9Aq9uOpHVEwoE+NJDUKRsFgAAABBgDe2hqZcNNL0AAAAABJRU5ErkJggg=="/><element name="nextButton" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAYCAYAAAAVibZIAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAElJREFUeNpiYBgFo2Dog/9AfB6I5dHE/lNqKAi/B2J/ahsKw/3EGMpIhKEk66WJoaR6fz61IyqemhEFSlL61ExSo2AUDAYAEGAAiG4hj+5t7M8AAAAASUVORK5CYII="/><element name="timeSliderRail" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAADxJREFUeNpiYBgFo2AU0Bwwzluw+D8tLWARFhKiqQ9YuLg4aWsBGxs7bS1gZ6e5BWyjSX0UjIKhDgACDABlYQOGh5pYywAAAABJRU5ErkJggg=="/><element name="timeSliderBuffer" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAD1JREFUeNpiYBgFo2AU0Bww1jc0/aelBSz8/Pw09QELOzs7bS1gY2OjrQWsrKy09gHraFIfBaNgqAOAAAMAvy0DChXHsZMAAAAASUVORK5CYII="/><element name="timeSliderProgress" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAClJREFUeNpiYBgFo2AU0BwwAvF/WlrARGsfjFow8BaMglEwCugAAAIMAOHfAQunR+XzAAAAAElFTkSuQmCC"/><element name="timeSliderThumb" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAAICAYAAAA870V8AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAABZJREFUeNpiZICA/yCCiQEJUJcDEGAAY0gBD1/m7Q0AAAAASUVORK5CYII="/><element name="muteButton" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAYCAYAAADKx8xXAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAADFJREFUeNpiYBgFIw3MB+L/5Gj8j6yRiRTFyICJXHfTXyMLAXlGati4YDRFDj8AEGAABk8GSqqS4CoAAAAASUVORK5CYII="/><element name="unmuteButton" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAYCAYAAADKx8xXAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAD1JREFUeNpiYBgFgxz8p7bm+cQa+h8LHy7GhEcjIz4bmAjYykiun/8j0fakGPIfTfPgiSr6aB4FVAcAAQYAWdwR1G1Wd2gAAAAASUVORK5CYII="/><element name="volumeSliderRail" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAYCAYAAADkgu3FAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAGpJREFUeNpi/P//PwM9ABMDncCoRYPfIqqDZcuW1UPp/6AUDcNM1DQYKtRAlaAj1mCSLSLXYIIWUctgDItoZfDA5aOoqKhGEANIM9LVR7SymGDQUctikuOIXkFNdhHEOFrDjlpEd4sAAgwAriRMub95fu8AAAAASUVORK5CYII="/><element name="volumeSliderProgress" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAYCAYAAADkgu3FAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAFtJREFUeNpi/P//PwM9ABMDncCoRYPfIlqAeij9H5SiYZiqBqPTlFqE02BKLSLaYFItIttgQhZRzWB8FjENiuRJ7aAbsMQwYMl7wDIsWUUQ42gNO2oR3S0CCDAAKhKq6MLLn8oAAAAASUVORK5CYII="/><element name="fullscreenButton" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAE5JREFUeNpiYBgFo2DQA0YC8v/xqP1PjDlMRDrEgUgxkgHIlfZoriVGjmzLsLFHAW2D6D8eA/9Tw7L/BAwgJE90PvhPpNgoGAVDEQAEGAAMdhTyXcPKcAAAAABJRU5ErkJggg=="/><element name="normalscreenButton" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAEZJREFUeNpiYBgFo2DIg/9UUkOUAf8JiFFsyX88fJyAkcQgYMQjNkzBoAgiezyRbE+tFGSPxQJ7auYBmma0UTAKBhgABBgAJAEY6zON61sAAAAASUVORK5CYII="/></elements></component><component name="display"><elements><element name="background" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAEpJREFUeNrszwENADAIA7DhX8ENoBMZ5KR10EryckCJiIiIiIiIiIiIiIiIiIiIiIh8GmkRERERERERERERERERERERERGRHSPAAPlXH1phYpYaAAAAAElFTkSuQmCC"/><element name="playIcon" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAALdJREFUeNrs18ENgjAYhmFouDOCcQJGcARHgE10BDcgTOIosAGwQOuPwaQeuFRi2p/3Sb6EC5L3QCxZBgAAAOCorLW1zMn65TrlkH4NcV7QNcUQt7Gn7KIhxA+qNIR81spOGkL8oFJDyLJRdosqKDDkK+iX5+d7huzwM40xptMQMkjIOeRGo+VkEVvIPfTGIpKASfYIfT9iCHkHrBEzf4gcUQ56aEzuGK/mw0rHpy4AAACAf3kJMACBxjAQNRckhwAAAABJRU5ErkJggg=="/><element name="muteIcon" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAHJJREFUeNrs1jEOgCAMBVAg7t5/8qaoIy4uoobyXsLCxA+0NCUAAADGUWvdQoQ41x4ixNBB2hBvBskdD3w5ZCkl3+33VqI0kjBBlh9rp+uTcyOP33TnolfsU85XX3yIRpQph8ZQY3wTZtU5AACASA4BBgDHoVuY1/fvOQAAAABJRU5ErkJggg=="/><element name="errorIcon" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAWlJREFUeNrsl+1twjAQhsHq/7BBYQLYIBmBDcoGMAIjtBPQTcII2SDtBDBBwrU6pGsUO7YbO470PtKJkz9iH++d4ywWAAAAAABgljRNsyWr2bZzDuJG1rLdZhcMbTjrBCGDyUKsqQLFciJb9bSvuG/WagRVRUVUI6gqy5HVeKWfSgRyJruKIU//TrZTSn2nmlaXThrloi/v9F2STC1W4+Aw5cBzkquRc09bofFNc6YLxEON0VUZS5FPTftO49vMjRsIF3RhOGr7/D/pJw+FKU+q0vDyq8W42jCunDqI3LC5XxNj2wHLU1XjaRnb0Lhykhqhhd8MtSF5J9tbjCv4mXGvKJz/65FF/qJryyaaIvzP2QRxZTX2nTuXjvV/VPFSwyLnW7mpH99yTh1FEVro6JBSd40/pMrRdV8vPtcKl28T2pT8TnFZ4yNosct3Q0io6JfBiz1FlGdqVQH3VHnepAEAAAAAADDzEGAAcTwB10jWgxcAAAAASUVORK5CYII="/><element name="bufferIcon" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAuhJREFUeNrsWr9rU1EUznuNGqvFQh1ULOhiBx0KDtIuioO4pJuik3FxFfUPaAV1FTdx0Q5d2g4FFxehTnEpZHFoBy20tCIWtGq0TZP4HfkeHB5N8m6Sl/sa74XDybvv3vvOd8/Pe4lXrVZT3dD8VJc0B8QBcUAcEAfESktHGeR5XtMfqFQq/f92zPe/NbtGlKTdCY30kuxrpMGO94BlQCXs+rbh3ONgA6BlzP1p20d80gEI5hmA2A92Qua1Q2PtAFISM+bvjMG8U+Q7oA3rQGASwrYCU6WpNdLGYbA+Pq5jjXIiwi8EEa2UDbQSaKOIuV+SlkcCrfjY8XTI9EpKGwP0C2kru2hLtHqa4zoXtZRWyvi4CLwv9Opr6Hkn6A9HKgEANsQ1iqC3Ub/vRUk2JgmRkatK36kVrnt0qObunwUdUUMXMWYpakJsO5Am8tAw2GBIgwWA+G2S2dMpiw0gDioQRQJoKhRb1QiDwlHZUABYbaXWsm5ae6loTE4ZDxN4CZar8foVzOJ2iyZ2kWF3t7YIevffaMT5yJ70kQb2fQ1sE5SHr2wazs2wgMxgbsEKEAgxAvZUJbQLBGTSBMgNrncJbA6AljtS/eKDJ0Ez+DmrQEzXS2h1Ck25kAg0IZcUOaydCy4sYnN2fOA+2AP16gNoHALlQ+fwH7XO4CxLenUpgj4xr6ugY2roPMbMx+Xs18m/E8CVEIhxsNeg83XWOAN6grG3lGbk8uE5fr4B/WH3cJw+co/l9nTYsSGYCJ/lY5/qv0thn6nrIWmjeJcPSnWOeY++AkF8tpJHIMAUs/MaBBpj3znZfQo5psY+ZrG4gv5HickjEOymKjEeRpgyST6IuZcTcWbnjcgdPi5ghxciRKsl1lDSsgwA1i8fssonJgzmTSqfGUkCENndNdAL7PS6QQ7ZYISTo+1qq0LEWjTWcvY4isa4z+yfQB+7ooyHVg5RI7/i1Ijn/vnggDggDogD4oC00P4KMACd/juEHOrS4AAAAABJRU5ErkJggg=="/></elements></component><component name="dock"><elements><element name="button" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAFBJREFUeNrs0cEJACAQA8Eofu0fu/W6EM5ZSAFDRpKTBs00CQQEBAQEBAQEBAQEBAQEBATkK8iqbY+AgICAgICAgICAgICAgICAgIC86QowAG5PAQzEJ0lKAAAAAElFTkSuQmCC"/></elements></component><component name="playlist"><elements><element name="item" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAIAAAC1nk4lAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAHhJREFUeNrs2NEJwCAMBcBYuv/CFuIE9VN47WWCR7iocXR3pdWdGPqqwIoMjYfQeAiNh9B4JHc6MHQVHnjggQceeOCBBx77TifyeOY0iHi8DqIdEY8dD5cL094eePzINB5CO/LwcOTptNB4CP25L4TIbZzpU7UEGAA5wz1uF5rF9AAAAABJRU5ErkJggg=="/><element name="sliderRail" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAA8CAIAAADpFA0BAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAADhJREFUeNrsy6ENACAMAMHClp2wYxZLAg5Fcu9e3OjuOKqqfTMzbs14CIZhGIZhGIZhGP4VLwEGAK/BBnVFpB0oAAAAAElFTkSuQmCC"/><element name="sliderThumb" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAA8CAIAAADpFA0BAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAADRJREFUeNrsy7ENACAMBLE8++8caFFKKiRffU53112SGs3ttOohGIZhGIZhGIZh+Fe8BRgAiaUGde6NOSEAAAAASUVORK5CYII="/></elements></component></components></skin>';this.xml=null;if(window.DOMParser){parser=new DOMParser();this.xml=parser.parseFromString(this.text,"text/xml")}else{this.xml=new ActiveXObject("Microsoft.XMLDOM");this.xml.async="false";this.xml.loadXML(this.text)}return this}})(jwplayer);(function(a){_utils=a.utils;_css=_utils.css;_hide=function(b){_css(b,{display:"none"})};_show=function(b){_css(b,{display:"block"})};a.html5.display=function(j,F){var i={icons:true,showmute:false};var P=_utils.extend({},i,F);var h=j;var O={};var e;var t;var v;var M;var r;var H;var z;var I=!_utils.exists(h.skin.getComponentSettings("display").bufferrotation)?15:parseInt(h.skin.getComponentSettings("display").bufferrotation,10);var p=!_utils.exists(h.skin.getComponentSettings("display").bufferinterval)?100:parseInt(h.skin.getComponentSettings("display").bufferinterval,10);var y=-1;var s="";var J=true;var d;var g=false;var m=false;var G=new a.html5.eventdispatcher();_utils.extend(this,G);var C={display:{style:{cursor:"pointer",top:0,left:0,overflow:"hidden"},click:l},display_icon:{style:{cursor:"pointer",position:"absolute",top:((h.skin.getSkinElement("display","background").height-h.skin.getSkinElement("display","playIcon").height)/2),left:((h.skin.getSkinElement("display","background").width-h.skin.getSkinElement("display","playIcon").width)/2),border:0,margin:0,padding:0,zIndex:3,display:"none"}},display_iconBackground:{style:{cursor:"pointer",position:"absolute",top:((t-h.skin.getSkinElement("display","background").height)/2),left:((e-h.skin.getSkinElement("display","background").width)/2),border:0,backgroundImage:(["url(",h.skin.getSkinElement("display","background").src,")"]).join(""),width:h.skin.getSkinElement("display","background").width,height:h.skin.getSkinElement("display","background").height,margin:0,padding:0,zIndex:2,display:"none"}},display_image:{style:{display:"none",width:e,height:t,position:"absolute",cursor:"pointer",left:0,top:0,margin:0,padding:0,textDecoration:"none",zIndex:1}},display_text:{style:{zIndex:4,position:"relative",opacity:0.8,backgroundColor:parseInt("000000",16),color:parseInt("ffffff",16),textAlign:"center",fontFamily:"Arial,sans-serif",padding:"0 5px",fontSize:14}}};h.jwAddEventListener(a.api.events.JWPLAYER_PLAYER_STATE,o);h.jwAddEventListener(a.api.events.JWPLAYER_MEDIA_MUTE,o);h.jwAddEventListener(a.api.events.JWPLAYER_PLAYLIST_ITEM,o);h.jwAddEventListener(a.api.events.JWPLAYER_ERROR,n);K();function K(){O.display=B("div","display");O.display_text=B("div","display_text");O.display.appendChild(O.display_text);O.display_image=B("img","display_image");O.display_image.onerror=function(Q){_hide(O.display_image)};O.display_image.onload=x;O.display_icon=B("div","display_icon");O.display_iconBackground=B("div","display_iconBackground");O.display.appendChild(O.display_image);O.display_iconBackground.appendChild(O.display_icon);O.display.appendChild(O.display_iconBackground);f();setTimeout((function(){m=true;if(P.icons.toString()=="true"){E()}}),1)}this.getDisplayElement=function(){return O.display};this.resize=function(R,Q){_css(O.display,{width:R,height:Q});_css(O.display_text,{width:(R-10),top:((Q-O.display_text.getBoundingClientRect().height)/2)});_css(O.display_iconBackground,{top:((Q-h.skin.getSkinElement("display","background").height)/2),left:((R-h.skin.getSkinElement("display","background").width)/2)});if(e!=R||t!=Q){e=R;t=Q;d=undefined;E()}c();o({})};this.show=function(){if(g){g=false;d=undefined;b()}};this.hide=function(){if(!g){d=undefined;A();g=true}};function x(Q){v=O.display_image.naturalWidth;M=O.display_image.naturalHeight;c()}function c(){_utils.stretch(h.jwGetStretching(),O.display_image,e,t,v,M)}function B(Q,S){var R=document.createElement(Q);R.id=h.id+"_jwplayer_"+S;_css(R,C[S].style);return R}function f(){for(var Q in O){if(_utils.exists(C[Q].click)){O[Q].onclick=C[Q].click}}}function l(Q){if(typeof Q.preventDefault!="undefined"){Q.preventDefault()}else{Q.returnValue=false}if(h.jwGetState()!=a.api.events.state.PLAYING){h.jwPlay()}else{h.jwPause()}}function N(Q){if(z){A();return}O.display_icon.style.backgroundImage=(["url(",h.skin.getSkinElement("display",Q).src,")"]).join("");_css(O.display_icon,{width:h.skin.getSkinElement("display",Q).width,height:h.skin.getSkinElement("display",Q).height,top:(h.skin.getSkinElement("display","background").height-h.skin.getSkinElement("display",Q).height)/2,left:(h.skin.getSkinElement("display","background").width-h.skin.getSkinElement("display",Q).width)/2});b();if(_utils.exists(h.skin.getSkinElement("display",Q+"Over"))){O.display_icon.onmouseover=function(R){O.display_icon.style.backgroundImage=["url(",h.skin.getSkinElement("display",Q+"Over").src,")"].join("")};O.display_icon.onmouseout=function(R){O.display_icon.style.backgroundImage=["url(",h.skin.getSkinElement("display",Q).src,")"].join("")}}else{O.display_icon.onmouseover=null;O.display_icon.onmouseout=null}}function A(){if(P.icons.toString()=="true"){_hide(O.display_icon);_hide(O.display_iconBackground);L()}}function b(){if(!g&&P.icons.toString()=="true"){_show(O.display_icon);_show(O.display_iconBackground);E()}}function n(Q){z=true;A();O.display_text.innerHTML=Q.error;_show(O.display_text);O.display_text.style.top=((t-O.display_text.getBoundingClientRect().height)/2)+"px"}function D(){O.display_image.style.display="none"}function o(Q){if((Q.type==a.api.events.JWPLAYER_PLAYER_STATE||Q.type==a.api.events.JWPLAYER_PLAYLIST_ITEM)&&z){z=false;_hide(O.display_text)}var R=h.jwGetState();if(R==s){return}s=R;if(y>=0){clearTimeout(y)}if(J||h.jwGetState()==a.api.events.state.PLAYING||h.jwGetState()==a.api.events.state.PAUSED){q(h.jwGetState())}else{y=setTimeout(k(h.jwGetState()),300)}}function k(Q){return(function(){q(Q)})}function q(Q){if(_utils.exists(H)){clearInterval(H);H=null;_utils.animations.rotate(O.display_icon,0)}switch(Q){case a.api.events.state.BUFFERING:if(_utils.isIOS()){D();A()}else{if(h.jwGetPlaylist()[h.jwGetItem()].provider=="sound"){u()}r=0;H=setInterval(function(){r+=I;_utils.animations.rotate(O.display_icon,r%360)},p);N("bufferIcon");J=true}break;case a.api.events.state.PAUSED:if(!_utils.isIOS()){if(h.jwGetPlaylist()[h.jwGetItem()].provider!="sound"){_css(O.display_image,{background:"transparent no-repeat center center"})}N("playIcon");J=true}break;case a.api.events.state.IDLE:if(h.jwGetPlaylist()[h.jwGetItem()].image){u()}else{D()}N("playIcon");J=true;break;default:if(h.jwGetPlaylist()[h.jwGetItem()].provider=="sound"){if(_utils.isIOS()){D();J=false}else{u()}}else{D();J=false}if(h.jwGetMute()&&P.showmute){N("muteIcon")}else{A()}break}y=-1}function u(){_css(O.display_image,{display:"block"});O.display_image.src=_utils.getAbsolutePath(h.jwGetPlaylist()[h.jwGetItem()].image)}function w(Q){return function(){if(!m){return}if(!g&&d!=Q){d=Q;G.sendEvent(Q,{component:"display",boundingRect:_utils.getDimensions(O.display_iconBackground)})}}}var E=w(a.api.events.JWPLAYER_COMPONENT_SHOW);var L=w(a.api.events.JWPLAYER_COMPONENT_HIDE);return this}})(jwplayer);(function(a){_css=a.utils.css;a.html5.dock=function(l,q){function m(){return{align:a.html5.view.positions.RIGHT}}var i=a.utils.extend({},m(),q);if(i.align=="FALSE"){return}var e={};var o=[];var f;var r;var c=false;var p=false;var d={x:0,y:0,width:0,height:0};var n;var h=new a.html5.eventdispatcher();_utils.extend(this,h);var j=document.createElement("div");j.id=l.id+"_jwplayer_dock";this.getDisplayElement=function(){return j};this.setButton=function(w,t,u,v){if(!t&&e[w]){a.utils.arrays.remove(o,w);j.removeChild(e[w].div);delete e[w]}else{if(t){if(!e[w]){e[w]={}}e[w].handler=t;e[w].outGraphic=u;e[w].overGraphic=v;if(!e[w].div){o.push(w);e[w].div=document.createElement("div");e[w].div.style.position="relative";j.appendChild(e[w].div);e[w].div.appendChild(document.createElement("img"));e[w].div.childNodes[0].style.position="absolute";e[w].div.childNodes[0].style.left=0;e[w].div.childNodes[0].style.top=0;e[w].div.childNodes[0].style.zIndex=10;e[w].div.childNodes[0].style.cursor="pointer";e[w].div.appendChild(document.createElement("img"));e[w].div.childNodes[1].style.position="absolute";e[w].div.childNodes[1].style.left=0;e[w].div.childNodes[1].style.top=0;if(l.skin.getSkinElement("dock","button")){e[w].div.childNodes[1].src=l.skin.getSkinElement("dock","button").src}e[w].div.childNodes[1].style.zIndex=9;e[w].div.childNodes[1].style.cursor="pointer";e[w].div.onmouseover=function(){if(e[w].overGraphic){e[w].div.childNodes[0].src=e[w].overGraphic}if(l.skin.getSkinElement("dock","buttonOver")){e[w].div.childNodes[1].src=l.skin.getSkinElement("dock","buttonOver").src}};e[w].div.onmouseout=function(){if(e[w].outGraphic){e[w].div.childNodes[0].src=e[w].outGraphic}if(l.skin.getSkinElement("dock","button")){e[w].div.childNodes[1].src=l.skin.getSkinElement("dock","button").src}};if(e[w].overGraphic){e[w].div.childNodes[0].src=e[w].overGraphic}if(e[w].outGraphic){e[w].div.childNodes[0].src=e[w].outGraphic}if(l.skin.getSkinElement("dock","button")){e[w].div.childNodes[1].src=l.skin.getSkinElement("dock","button").src}}if(t){e[w].div.onclick=function(x){x.preventDefault();a(l.id).callback(w);if(e[w].overGraphic){e[w].div.childNodes[0].src=e[w].overGraphic}if(l.skin.getSkinElement("dock","button")){e[w].div.childNodes[1].src=l.skin.getSkinElement("dock","button").src}}}}}g(f,r)};function g(t,F){if(o.length>0){var u=10;var E=u;var B=-1;var C=l.skin.getSkinElement("dock","button").height;var A=l.skin.getSkinElement("dock","button").width;var y=t-A-u;var D,x;if(i.align==a.html5.view.positions.LEFT){B=1;y=u}for(var v=0;v<o.length;v++){var G=Math.floor(E/F);if((E+C+u)>((G+1)*F)){E=((G+1)*F)+u;G=Math.floor(E/F)}var w=e[o[v]].div;w.style.top=(E%F)+"px";w.style.left=(y+(l.skin.getSkinElement("dock","button").width+u)*G*B)+"px";var z={x:a.utils.parseDimension(w.style.left),y:a.utils.parseDimension(w.style.top),width:A,height:C};if(!D||(z.x<=D.x&&z.y<=D.y)){D=z}if(!x||(z.x>=x.x&&z.y>=x.y)){x=z}E+=l.skin.getSkinElement("dock","button").height+u}d={x:D.x,y:D.y,width:x.x-D.x+x.width,height:D.y-x.y+x.height}}if(p!=l.jwGetFullscreen()||f!=t||r!=F){f=t;r=F;p=l.jwGetFullscreen();n=undefined;setTimeout(k,1)}}function b(t){return function(){if(!c&&n!=t&&o.length>0){n=t;h.sendEvent(t,{component:"dock",boundingRect:d})}}}var k=b(a.api.events.JWPLAYER_COMPONENT_SHOW);var s=b(a.api.events.JWPLAYER_COMPONENT_HIDE);this.resize=g;this.show=function(){_css(j,{display:"block"});if(c){c=false;k()}};this.hide=function(){_css(j,{display:"none"});if(!c){s();c=true}};return this}})(jwplayer);(function(a){a.html5.eventdispatcher=function(d,b){var c=new a.events.eventdispatcher(b);a.utils.extend(this,c);this.sendEvent=function(e,f){if(!a.utils.exists(f)){f={}}a.utils.extend(f,{id:d,version:a.version,type:e});c.sendEvent(e,f)}}})(jwplayer);(function(a){var b={prefix:"http://l.longtailvideo.com/html5/",file:"logo.png",link:"http://www.longtailvideo.com/players/jw-flv-player/",margin:8,out:0.5,over:1,timeout:5,hide:true,position:"bottom-left"};_css=a.utils.css;a.html5.logo=function(l,m){var r=l;var n;var i;var c;j();function j(){p();d();f()}function p(){if(b.prefix){var t=l.version.split(/\W/).splice(0,2).join("/");if(b.prefix.indexOf(t)<0){b.prefix+=t+"/"}}if(m.position==a.html5.view.positions.OVER){m.position=b.position}i=a.utils.extend({},b)}function d(){c=document.createElement("img");c.id=r.id+"_jwplayer_logo";c.style.display="none";c.onload=function(t){_css(c,q());r.jwAddEventListener(a.api.events.JWPLAYER_PLAYER_STATE,s);e()};if(!i.file){return}if(i.file.indexOf("http://")===0){c.src=i.file}else{c.src=i.prefix+i.file}}if(!i.file){return}this.resize=function(u,t){};this.getDisplayElement=function(){return c};function f(){if(i.link){c.onmouseover=h;c.onmouseout=e;c.onclick=o}else{this.mouseEnabled=false}}function o(t){if(typeof t!="undefined"){t.stopPropagation()}r.jwPause();r.jwSetFullscreen(false);if(i.link){window.open(i.link,"_self")}return}function e(t){if(i.link){c.style.opacity=i.out}return}function h(t){if(i.hide){c.style.opacity=i.over}return}function q(){var v={textDecoration:"none",position:"absolute",cursor:"pointer"};v.display=i.hide?"none":"block";var u=i.position.toLowerCase().split("-");for(var t in u){v[u[t]]=i.margin}return v}function k(){if(i.hide){c.style.display="block";c.style.opacity=0;a.utils.fadeTo(c,i.out,0.1,parseFloat(c.style.opacity));n=setTimeout(function(){g()},i.timeout*1000)}}function g(){if(i.hide){a.utils.fadeTo(c,0,0.1,parseFloat(c.style.opacity))}}function s(t){if(t.newstate==a.api.events.state.BUFFERING){clearTimeout(n);k()}}return this}})(jwplayer);(function(a){var c={ended:a.api.events.state.IDLE,playing:a.api.events.state.PLAYING,pause:a.api.events.state.PAUSED,buffering:a.api.events.state.BUFFERING};var e=a.utils;var b=e.css;var d=e.isIOS();a.html5.mediavideo=function(h,r){var q={abort:m,canplay:j,canplaythrough:j,durationchange:F,emptied:m,ended:j,error:t,loadeddata:F,loadedmetadata:F,loadstart:j,pause:j,play:C,playing:j,progress:u,ratechange:m,seeked:j,seeking:j,stalled:j,suspend:j,timeupdate:C,volumechange:m,waiting:j,canshowcurrentframe:m,dataunavailable:m,empty:m,load:y,loadedfirstframe:m};var i=new a.html5.eventdispatcher();e.extend(this,i);var x=h,k=r,l,A,z,w,f,G=false,B,o,p;n();this.load=function(I,J){if(typeof J=="undefined"){J=true}w=I;e.empty(l);p=0;if(I.levels&&I.levels.length>0){if(I.levels.length==1){l.src=I.levels[0].file}else{if(l.src){l.removeAttribute("src")}for(var H=0;H<I.levels.length;H++){var K=l.ownerDocument.createElement("source");K.src=I.levels[H].file;l.appendChild(K);p++}}}else{l.src=I.file}if(d){if(I.image){l.poster=I.image}l.controls="controls"}B=o=z=false;x.buffer=0;if(!e.exists(I.start)){I.start=0}x.duration=I.duration;i.sendEvent(a.api.events.JWPLAYER_MEDIA_LOADED);if((!d&&I.levels.length==1)||!G){l.load()}G=false;if(J){D(a.api.events.state.BUFFERING);i.sendEvent(a.api.events.JWPLAYER_MEDIA_BUFFER,{bufferPercent:0});this.play()}};this.play=function(){if(A!=a.api.events.state.PLAYING){s();l.play();if(o){D(a.api.events.state.PLAYING)}else{D(a.api.events.state.BUFFERING)}}};this.pause=function(){l.pause();D(a.api.events.state.PAUSED)};this.seek=function(H){if(!(x.duration<=0||isNaN(x.duration))&&!(x.position<=0||isNaN(x.position))){l.currentTime=H;l.play()}};_stop=this.stop=function(H){if(!e.exists(H)){H=true}g();if(H){l.style.display="none";o=false;var I=navigator.userAgent;if(I.match(/chrome/i)){l.src=undefined}else{if(I.match(/safari/i)){l.removeAttribute("src")}else{l.src=""}}l.removeAttribute("controls");l.removeAttribute("poster");e.empty(l);l.load();G=true;if(l.webkitSupportsFullscreen){try{l.webkitExitFullscreen()}catch(J){}}}D(a.api.events.state.IDLE)};this.fullscreen=function(H){if(H===true){this.resize("100%","100%")}else{this.resize(x.config.width,x.config.height)}};this.resize=function(I,H){if(false){b(k,{width:I,height:H})}i.sendEvent(a.api.events.JWPLAYER_MEDIA_RESIZE,{fullscreen:x.fullscreen,width:I,hieght:H})};this.volume=function(H){if(!d){l.volume=H/100;x.volume=H;i.sendEvent(a.api.events.JWPLAYER_MEDIA_VOLUME,{volume:Math.round(H)})}};this.mute=function(H){if(!d){l.muted=H;x.mute=H;i.sendEvent(a.api.events.JWPLAYER_MEDIA_MUTE,{mute:H})}};this.getDisplayElement=function(){return l};this.hasChrome=function(){return false};function n(){l=document.createElement("video");A=a.api.events.state.IDLE;for(var H in q){l.addEventListener(H,function(I){if(e.exists(I.target.parentNode)){q[I.type](I)}},true)}if(k.parentNode){k.parentNode.replaceChild(l,k)}if(!l.id){l.id=k.id}}function D(H){if(H==a.api.events.state.PAUSED&&A==a.api.events.state.IDLE){return}if(A!=H){var I=A;x.state=A=H;i.sendEvent(a.api.events.JWPLAYER_PLAYER_STATE,{oldstate:I,newstate:H})}}function m(H){}function u(J){var I;if(e.exists(J)&&J.lengthComputable&&J.total){I=J.loaded/J.total*100}else{if(e.exists(l.buffered)&&(l.buffered.length>0)){var H=l.buffered.length-1;if(H>=0){I=l.buffered.end(H)/l.duration*100}}}if(o===false&&A==a.api.events.state.BUFFERING){i.sendEvent(a.api.events.JWPLAYER_MEDIA_BUFFER_FULL);o=true}if(!B){if(I==100){B=true}if(e.exists(I)&&(I>x.buffer)){x.buffer=Math.round(I);i.sendEvent(a.api.events.JWPLAYER_MEDIA_BUFFER,{bufferPercent:Math.round(I)})}}}function C(I){if(e.exists(I)&&e.exists(I.target)){if(x.duration<=0||isNaN(x.duration)){x.duration=Math.round(I.target.duration*10)/10}if(!z&&l.readyState>0){l.style.display="block";D(a.api.events.state.PLAYING)}if(A==a.api.events.state.PLAYING){if(!z&&l.readyState>0){z=true;try{if(l.currentTime<w.start){l.currentTime=w.start}}catch(H){}l.volume=x.volume/100;l.muted=x.mute}x.position=Math.round(I.target.currentTime*10)/10;i.sendEvent(a.api.events.JWPLAYER_MEDIA_TIME,{position:I.target.currentTime,duration:x.duration});if(x.position>=x.duration&&(x.position>0||x.duration>0)){v()}}}u(I)}function y(H){}function j(H){if(c[H.type]){if(H.type=="ended"){v()}else{D(c[H.type])}}}function F(H){var I={height:H.target.videoHeight,width:H.target.videoWidth,duration:Math.round(H.target.duration*10)/10};if(x.duration===0||isNaN(x.duration)){x.duration=Math.round(H.target.duration*10)/10}i.sendEvent(a.api.events.JWPLAYER_MEDIA_META,{metadata:I})}function t(J){if(A==a.api.events.state.IDLE){return}var I="There was an error: ";if((J.target.error&&J.target.tagName.toLowerCase()=="video")||J.target.parentNode.error&&J.target.parentNode.tagName.toLowerCase()=="video"){var H=!e.exists(J.target.error)?J.target.parentNode.error:J.target.error;switch(H.code){case H.MEDIA_ERR_ABORTED:I="You aborted the video playback: ";break;case H.MEDIA_ERR_NETWORK:I="A network error caused the video download to fail part-way: ";break;case H.MEDIA_ERR_DECODE:I="The video playback was aborted due to a corruption problem or because the video used features your browser did not support: ";break;case H.MEDIA_ERR_SRC_NOT_SUPPORTED:I="The video could not be loaded, either because the server or network failed or because the format is not supported: ";break;default:I="An unknown error occurred: ";break}}else{if(J.target.tagName.toLowerCase()=="source"){p--;if(p>0){return}I="The video could not be loaded, either because the server or network failed or because the format is not supported: "}else{e.log("An unknown error occurred.  Continuing...");return}}_stop(false);I+=E();_error=true;i.sendEvent(a.api.events.JWPLAYER_ERROR,{error:I});return}function E(){var J="";for(var I in w.levels){var H=w.levels[I];var K=k.ownerDocument.createElement("source");J+=a.utils.getAbsolutePath(H.file);if(I<(w.levels.length-1)){J+=", "}}return J}function s(){if(!e.exists(f)){f=setInterval(function(){u()},100)}}function g(){clearInterval(f);f=null}function v(){if(A!=a.api.events.state.IDLE){_stop(false);i.sendEvent(a.api.events.JWPLAYER_MEDIA_COMPLETE)}}}})(jwplayer);(function(a){var c={ended:a.api.events.state.IDLE,playing:a.api.events.state.PLAYING,pause:a.api.events.state.PAUSED,buffering:a.api.events.state.BUFFERING};var b=a.utils.css;a.html5.mediayoutube=function(i,e){var f=new a.html5.eventdispatcher();a.utils.extend(this,f);var k=i;var h=document.getElementById(e.id);var g=a.api.events.state.IDLE;var n,m;l();function j(p){if(g!=p){var q=g;k.state=p;g=p;f.sendEvent(a.api.events.JWPLAYER_PLAYER_STATE,{oldstate:q,newstate:p})}}this.getDisplayElement=function(){return h};this.play=function(){if(g==a.api.events.state.IDLE){f.sendEvent(a.api.events.JWPLAYER_MEDIA_BUFFER,{bufferPercent:100});f.sendEvent(a.api.events.JWPLAYER_MEDIA_BUFFER_FULL);j(a.api.events.state.PLAYING)}else{if(g==a.api.events.state.PAUSED){j(a.api.events.state.PLAYING)}}};this.pause=function(){j(a.api.events.state.PAUSED)};this.seek=function(p){};this.stop=function(p){if(!_utils.exists(p)){p=true}k.position=0;j(a.api.events.state.IDLE);if(p){b(n,{display:"none"})}};this.volume=function(p){k.volume=p;f.sendEvent(a.api.events.JWPLAYER_MEDIA_VOLUME,{volume:Math.round(p)})};this.mute=function(p){h.muted=p;k.mute=p;f.sendEvent(a.api.events.JWPLAYER_MEDIA_MUTE,{mute:p})};this.resize=function(q,p){if(q*p>0){n.width=m.width=q;n.height=m.height=p}f.sendEvent(a.api.events.JWPLAYER_MEDIA_RESIZE,{fullscreen:k.fullscreen,width:q,height:p})};this.fullscreen=function(p){if(p===true){this.resize("100%","100%")}else{this.resize(k.config.width,k.config.height)}};this.load=function(p){b(n,{display:"block"});o(p);j(a.api.events.state.BUFFERING);f.sendEvent(a.api.events.JWPLAYER_MEDIA_BUFFER,{bufferPercent:0});f.sendEvent(a.api.events.JWPLAYER_MEDIA_LOADED);this.play()};this.hasChrome=function(){return(g!=a.api.events.state.IDLE)};function o(v){var s=v.levels[0].file;s=["http://www.youtube.com/v/",d(s),"&amp;hl=en_US&amp;fs=1&autoplay=1"].join("");var u={movie:s,allowfullscreen:"true",allowscriptaccess:"always"};n.innerHTML="";for(var p in u){var t=document.createElement("param");t.name=p;t.value=u[p];n.appendChild(t)}var q={src:s,type:"application/x-shockwave-flash",allowfullscreen:"true",allowscriptaccess:"always",width:n.width,height:n.height};for(var r in q){m.setAttribute(r,q[r])}n.appendChild(m);n.style.zIndex=2147483000}function l(){n=document.createElement("object");n.id=h.id;n.style.position="absolute";n.width=k.config.width;n.height=k.config.height;if(h.parentNode){h.parentNode.replaceChild(n,h)}h=n;m=document.createElement("embed");n.appendChild(m);if(a.utils.isIOS()&&k.playlist&&k.playlist[k.item]){o(k.playlist[k.item])}}function d(q){var p=q.split(/\?|\#\!/);var s="";for(var r=0;r<p.length;r++){if(p[r].substr(0,2)=="v="){s=p[r].substr(2)}}if(s==""){if(q.indexOf("/v/")>=0){s=q.substr(q.indexOf("/v/")+3)}else{if(q.indexOf("youtu.be")>=0){s=q.substr(q.indexOf("youtu.be/")+9)}else{s=q}}}if(s.indexOf("?")>-1){s=s.substr(0,s.indexOf("?"))}if(s.indexOf("&")>-1){s=s.substr(0,s.indexOf("&"))}return s}this.embed=m;return this}})(jwplayer);(function(jwplayer){var _configurableStateVariables=["width","height","start","duration","volume","mute","fullscreen","item","plugins","stretching"];jwplayer.html5.model=function(api,container,options){var _api=api;var _container=container;var _model={id:_container.id,playlist:[],state:jwplayer.api.events.state.IDLE,position:0,buffer:0,config:{width:480,height:320,item:-1,skin:undefined,file:undefined,image:undefined,start:0,duration:0,bufferlength:5,volume:90,mute:false,fullscreen:false,repeat:"",stretching:jwplayer.utils.stretching.UNIFORM,autostart:false,debug:undefined,screencolor:undefined}};var _media;var _eventDispatcher=new jwplayer.html5.eventdispatcher();var _components=["display","logo","playlist","controlbar","dock"];jwplayer.utils.extend(_model,_eventDispatcher);for(var option in options){if(typeof options[option]=="string"){var type=/color$/.test(option)?"color":null;options[option]=jwplayer.utils.typechecker(options[option],type)}var config=_model.config;var path=option.split(".");for(var edge in path){if(edge==path.length-1){config[path[edge]]=options[option]}else{if(!jwplayer.utils.exists(config[path[edge]])){config[path[edge]]={}}config=config[path[edge]]}}}for(var index in _configurableStateVariables){var configurableStateVariable=_configurableStateVariables[index];_model[configurableStateVariable]=_model.config[configurableStateVariable]}var pluginorder=_components.concat([]);if(jwplayer.utils.exists(_model.plugins)){if(typeof _model.plugins=="string"){var userplugins=_model.plugins.split(",");for(var userplugin in userplugins){if(typeof userplugins[userplugin]=="string"){pluginorder.push(userplugins[userplugin].replace(/^\s+|\s+$/g,""))}}}}if(typeof _model.config.chromeless=="undefined"&&jwplayer.utils.isIPod()){_model.config.chromeless=true}if(jwplayer.utils.isIPad()){pluginorder=["logo","display","playlist"];if(!jwplayer.utils.exists(_model.config.repeat)){_model.config.repeat="list"}}else{if(_model.config.chromeless){pluginorder=["logo","playlist"];if(!jwplayer.utils.exists(_model.config.repeat)){_model.config.repeat="list"}}}_model.plugins={order:pluginorder,config:{},object:{}};if(typeof _model.config.components!="undefined"){for(var component in _model.config.components){_model.plugins.config[component]=_model.config.components[component]}}for(var pluginIndex in _model.plugins.order){var pluginName=_model.plugins.order[pluginIndex];var pluginConfig=!jwplayer.utils.exists(_model.plugins.config[pluginName])?{}:_model.plugins.config[pluginName];_model.plugins.config[pluginName]=!jwplayer.utils.exists(_model.plugins.config[pluginName])?pluginConfig:jwplayer.utils.extend(_model.plugins.config[pluginName],pluginConfig);if(!jwplayer.utils.exists(_model.plugins.config[pluginName].position)){if(pluginName=="playlist"){_model.plugins.config[pluginName].position=jwplayer.html5.view.positions.NONE}else{_model.plugins.config[pluginName].position=jwplayer.html5.view.positions.OVER}}else{_model.plugins.config[pluginName].position=_model.plugins.config[pluginName].position.toString().toUpperCase()}}if(typeof _model.plugins.config.dock!="undefined"){if(typeof _model.plugins.config.dock!="object"){var position=_model.plugins.config.dock.toString().toUpperCase();_model.plugins.config.dock={position:position}}if(typeof _model.plugins.config.dock.position!="undefined"){_model.plugins.config.dock.align=_model.plugins.config.dock.position;_model.plugins.config.dock.position=jwplayer.html5.view.positions.OVER}}function _loadExternal(playlistfile){var loader=new jwplayer.html5.playlistloader();loader.addEventListener(jwplayer.api.events.JWPLAYER_PLAYLIST_LOADED,function(evt){_model.playlist=new jwplayer.html5.playlist(evt);_loadComplete(true)});loader.addEventListener(jwplayer.api.events.JWPLAYER_ERROR,function(evt){_model.playlist=new jwplayer.html5.playlist({playlist:[]});_loadComplete(false)});loader.load(playlistfile)}function _loadComplete(){if(_model.config.shuffle){_model.item=_getShuffleItem()}else{if(_model.config.item>=_model.playlist.length){_model.config.item=_model.playlist.length-1}else{if(_model.config.item<0){_model.config.item=0}}_model.item=_model.config.item}_eventDispatcher.sendEvent(jwplayer.api.events.JWPLAYER_PLAYLIST_LOADED,{playlist:_model.playlist});if(_model.playlist[_model.item].file||_model.playlist[_model.item].levels[0].file){_model.setActiveMediaProvider(_model.playlist[_model.item])}}_model.loadPlaylist=function(arg){var input;if(typeof arg=="string"){try{input=eval(arg)}catch(err){input=arg}}else{input=arg}var config;switch(jwplayer.utils.typeOf(input)){case"object":config=input;break;case"array":config={playlist:input};break;default:_loadExternal(input);return;break}_model.playlist=new jwplayer.html5.playlist(config);if(jwplayer.utils.extension(_model.playlist[0].file)=="xml"){_loadExternal(_model.playlist[0].file)}else{_loadComplete()}};function _getShuffleItem(){var result=null;if(_model.playlist.length>1){while(!jwplayer.utils.exists(result)){result=Math.floor(Math.random()*_model.playlist.length);if(result==_model.item){result=null}}}else{result=0}return result}function forward(evt){if(evt.type==jwplayer.api.events.JWPLAYER_MEDIA_LOADED){_container=_media.getDisplayElement()}_eventDispatcher.sendEvent(evt.type,evt)}var _mediaProviders={};_model.setActiveMediaProvider=function(playlistItem){if(playlistItem.provider=="audio"){playlistItem.provider="sound"}var provider=playlistItem.provider;var current=_media?_media.getDisplayElement():null;if(provider=="sound"||provider=="http"||provider==""){provider="video"}if(!jwplayer.utils.exists(_mediaProviders[provider])){switch(provider){case"video":_media=new jwplayer.html5.mediavideo(_model,current?current:_container);break;case"youtube":_media=new jwplayer.html5.mediayoutube(_model,current?current:_container);break}if(!jwplayer.utils.exists(_media)){return false}_media.addGlobalListener(forward);_mediaProviders[provider]=_media}else{if(_media!=_mediaProviders[provider]){if(_media){_media.stop()}_media=_mediaProviders[provider]}}if(_model.config.chromeless){_media.load(playlistItem,false)}return true};_model.getMedia=function(){return _media};_model.seek=function(pos){_eventDispatcher.sendEvent(jwplayer.api.events.JWPLAYER_MEDIA_SEEK,{position:_model.position,offset:pos});return _media.seek(pos)};_model.setupPlugins=function(){for(var plugin in _model.plugins.order){try{var pluginName=_model.plugins.order[plugin];if(jwplayer.utils.exists(jwplayer.html5[pluginName])){if(pluginName=="playlist"){_model.plugins.object[pluginName]=new jwplayer.html5.playlistcomponent(_api,_model.plugins.config[pluginName])}else{_model.plugins.object[pluginName]=new jwplayer.html5[pluginName](_api,_model.plugins.config[pluginName])}}else{_model.plugins.order.splice(plugin,plugin+1)}if(typeof _model.plugins.object[pluginName].addGlobalListener=="function"){_model.plugins.object[pluginName].addGlobalListener(forward)}}catch(err){jwplayer.utils.log("Could not setup "+pluginName)}}};return _model}})(jwplayer);(function(a){a.html5.playlist=function(b){var d=[];if(b.playlist&&b.playlist instanceof Array&&b.playlist.length>0){for(var c in b.playlist){if(!isNaN(parseInt(c))){d.push(new a.html5.playlistitem(b.playlist[c]))}}}else{d.push(new a.html5.playlistitem(b))}return d}})(jwplayer);(function(a){var c={size:180,position:a.html5.view.positions.NONE,itemheight:60,thumbs:true,fontcolor:"#000000",overcolor:"",activecolor:"",backgroundcolor:"#f8f8f8",font:"_sans",fontsize:"",fontstyle:"",fontweight:""};var b={_sans:"Arial, Helvetica, sans-serif",_serif:"Times, Times New Roman, serif",_typewriter:"Courier New, Courier, monospace"};_utils=a.utils;_css=_utils.css;_hide=function(d){_css(d,{display:"none"})};_show=function(d){_css(d,{display:"block"})};a.html5.playlistcomponent=function(q,A){var v=q;var e=a.utils.extend({},c,v.skin.getComponentSettings("playlist"),A);if(e.position==a.html5.view.positions.NONE||typeof a.html5.view.positions[e.position]=="undefined"){return}var w;var k;var B;var d;var g;var f;var j=-1;var h={background:undefined,item:undefined,itemOver:undefined,itemImage:undefined,itemActive:undefined};this.getDisplayElement=function(){return w};this.resize=function(E,C){k=E;B=C;var D={width:k,height:B};_css(w,D)};this.show=function(){_show(w)};this.hide=function(){_hide(w)};function i(){w=document.createElement("div");w.id=v.id+"_jwplayer_playlistcomponent";switch(e.position){case a.html5.view.positions.RIGHT:case a.html5.view.positions.LEFT:w.style.width=e.size+"px";break;case a.html5.view.positions.TOP:case a.html5.view.positions.BOTTOM:w.style.height=e.size+"px";break}z();if(h.item){e.itemheight=h.item.height}w.style.backgroundColor="#C6C6C6";v.jwAddEventListener(a.api.events.JWPLAYER_PLAYLIST_LOADED,r);v.jwAddEventListener(a.api.events.JWPLAYER_PLAYLIST_ITEM,t);v.jwAddEventListener(a.api.events.JWPLAYER_PLAYER_STATE,l)}function o(){var C=document.createElement("ul");_css(C,{width:w.style.width,minWidth:w.style.width,height:w.style.height,backgroundColor:e.backgroundcolor,backgroundImage:h.background?"url("+h.background.src+")":"",color:e.fontcolor,listStyle:"none",margin:0,padding:0,fontFamily:b[e.font]?b[e.font]:b._sans,fontSize:(e.fontsize?e.fontsize:11)+"px",fontStyle:e.fontstyle,fontWeight:e.fontweight,overflowY:"auto"});return C}function x(C){return function(){var D=f.getElementsByClassName("item")[C];var E=e.fontcolor;var F=h.item?"url("+h.item.src+")":"";if(C==v.jwGetPlaylistIndex()){if(e.activecolor){E=e.activecolor}if(h.itemActive){F="url("+h.itemActive.src+")"}}_css(D,{color:e.overcolor?e.overcolor:E,backgroundImage:h.itemOver?"url("+h.itemOver.src+")":F})}}function n(C){return function(){var D=f.getElementsByClassName("item")[C];var E=e.fontcolor;var F=h.item?"url("+h.item.src+")":"";if(C==v.jwGetPlaylistIndex()){if(e.activecolor){E=e.activecolor}if(h.itemActive){F="url("+h.itemActive.src+")"}}_css(D,{color:E,backgroundImage:F})}}function p(D){var F=d[D];var C=document.createElement("li");C.className="item";_css(C,{height:e.itemheight,display:"block",cursor:"pointer",backgroundImage:h.item?"url("+h.item.src+")":"",backgroundSize:"100% "+e.itemheight+"px"});C.onmouseover=x(D);C.onmouseout=n(D);var G;var E=0;if(u()&&(F.image||F["playlist.image"]||h.itemImage)){G=new Image();G.className="image";if(h.itemImage){E=(e.itemheight-h.itemImage.height)/2}_css(G,{height:h.itemImage?h.itemImage.height:e.itemheight,width:h.itemImage?h.itemImage.width:e.itemheight*4/3,"float":"left",styleFloat:"left",cssFloat:"left",margin:"0 5px 0 0",background:"black",overflow:"auto",margin:E+"px"});if(F["playlist.image"]){G.src=F["playlist.image"]}else{if(F.image){G.src=F.image}else{if(h.itemImage){G.src=h.itemImage.src}}}C.appendChild(G)}var J=document.createElement("div");_css(J,{margin:"0 5px"});var I=document.createElement("span");I.className="title";_css(I,{margin:0,padding:"0 0 0 5px",height:e.fontsize?e.fontsize+10:20,lineHeight:24,overflow:"hidden",display:"block",fontSize:(e.fontsize?e.fontsize:13)+"px",fontWeight:"bold"});I.innerHTML=F?F.title:"";J.appendChild(I);if(F.description){var H=document.createElement("span");H.className="description";_css(H,{display:"block",margin:0,padding:"0 0 0 5px",height:e.itemheight-parseInt(I.style.height.replace("px","")),lineHeight:(e.fontsize?e.fontsize*1.5:18)+"px",overflow:"hidden"});H.innerHTML=F.description;J.appendChild(H)}C.appendChild(J);return C}function r(D){w.innerHTML="";d=v.jwGetPlaylist();if(!d){return}items=[];f=o();for(var E=0;E<d.length;E++){var C=p(E);C.onclick=y(E);f.appendChild(C);items.push(C)}j=v.jwGetPlaylistIndex();n(j)();w.appendChild(f);if(_utils.isIOS()&&window.iScroll){f.style.height=60*d.length+"px";var F=new iScroll(w.id)}}function y(C){return function(){v.jwPlaylistItem(C);v.jwPlay(true)}}function m(){f.scrollTop=v.jwGetPlaylistIndex()*e.itemheight}function u(){return e.thumbs.toString().toLowerCase()=="true"}function t(C){if(j>=0){n(j)();j=C.index}n(C.index)();m()}function l(){if(e.position==a.html5.view.positions.OVER){switch(v.jwGetState()){case a.api.events.state.IDLE:_show(w);break;default:_hide(w);break}}}function z(){for(var C in h){h[C]=s(C)}}function s(C){return v.skin.getSkinElement("playlist",C)}i();return this}})(jwplayer);(function(b){b.html5.playlistitem=function(d){var e={author:"",date:"",description:"",image:"",link:"",mediaid:"",tags:"",title:"",provider:"",file:"",streamer:"",duration:-1,start:0,currentLevel:-1,levels:[]};var c=b.utils.extend({},e,d);if(c.type){c.provider=c.type;delete c.type}if(c.levels.length===0){c.levels[0]=new b.html5.playlistitemlevel(c)}if(!c.provider){c.provider=a(c.levels[0])}else{c.provider=c.provider.toLowerCase()}return c};function a(e){if(b.utils.isYouTube(e.file)){return"youtube"}else{var f=b.utils.extension(e.file);var c;if(f&&b.utils.extensionmap[f]){c=b.utils.extensionmap[f].html5}else{if(e.type){c=e.type}}if(c){var d=c.split("/")[0];if(d=="audio"){return"sound"}else{if(d=="video"){return d}}}}return""}})(jwplayer);(function(a){a.html5.playlistitemlevel=function(b){var d={file:"",streamer:"",bitrate:0,width:0};for(var c in d){if(a.utils.exists(b[c])){d[c]=b[c]}}return d}})(jwplayer);(function(a){a.html5.playlistloader=function(){var c=new a.html5.eventdispatcher();a.utils.extend(this,c);this.load=function(e){a.utils.ajax(e,d,b)};function d(g){var f=[];try{var f=a.utils.parsers.rssparser.parse(g.responseXML.firstChild);c.sendEvent(a.api.events.JWPLAYER_PLAYLIST_LOADED,{playlist:new a.html5.playlist({playlist:f})})}catch(h){b("Could not parse the playlist")}}function b(e){c.sendEvent(a.api.events.JWPLAYER_ERROR,{error:e?e:"could not load playlist for whatever reason.  too bad"})}}})(jwplayer);(function(a){a.html5.skin=function(){var b={};var c=false;this.load=function(d,e){new a.html5.skinloader(d,function(f){c=true;b=f;e()},function(){new a.html5.skinloader("",function(f){c=true;b=f;e()})})};this.getSkinElement=function(d,e){if(c){try{return b[d].elements[e]}catch(f){a.utils.log("No such skin component / element: ",[d,e])}}return null};this.getComponentSettings=function(d){if(c){return b[d].settings}return null};this.getComponentLayout=function(d){if(c){return b[d].layout}return null}}})(jwplayer);(function(a){a.html5.skinloader=function(f,o,j){var n={};var c=o;var k=j;var e=true;var i;var m=f;var r=false;function l(){if(typeof m!="string"||m===""){d(a.html5.defaultSkin().xml)}else{a.utils.ajax(a.utils.getAbsolutePath(m),function(s){try{if(a.utils.exists(s.responseXML)){d(s.responseXML);return}}catch(t){h()}d(a.html5.defaultSkin().xml)},function(s){d(a.html5.defaultSkin().xml)})}}function d(x){var D=x.getElementsByTagName("component");if(D.length===0){return}for(var G=0;G<D.length;G++){var B=D[G].getAttribute("name");var A={settings:{},elements:{},layout:{}};n[B]=A;var F=D[G].getElementsByTagName("elements")[0].getElementsByTagName("element");for(var E=0;E<F.length;E++){b(F[E],B)}var y=D[G].getElementsByTagName("settings")[0];if(y&&y.childNodes.length>0){var J=y.getElementsByTagName("setting");for(var O=0;O<J.length;O++){var P=J[O].getAttribute("name");var H=J[O].getAttribute("value");var w=/color$/.test(P)?"color":null;n[B].settings[P]=a.utils.typechecker(H,w)}}var K=D[G].getElementsByTagName("layout")[0];if(K&&K.childNodes.length>0){var L=K.getElementsByTagName("group");for(var v=0;v<L.length;v++){var z=L[v];n[B].layout[z.getAttribute("position")]={elements:[]};for(var N=0;N<z.attributes.length;N++){var C=z.attributes[N];n[B].layout[z.getAttribute("position")][C.name]=C.value}var M=z.getElementsByTagName("*");for(var u=0;u<M.length;u++){var s=M[u];n[B].layout[z.getAttribute("position")].elements.push({type:s.tagName});for(var t=0;t<s.attributes.length;t++){var I=s.attributes[t];n[B].layout[z.getAttribute("position")].elements[u][I.name]=I.value}if(!a.utils.exists(n[B].layout[z.getAttribute("position")].elements[u].name)){n[B].layout[z.getAttribute("position")].elements[u].name=s.tagName}}}}e=false;q()}}function q(){clearInterval(i);if(!r){i=setInterval(function(){p()},100)}}function b(x,w){var v=new Image();var s=x.getAttribute("name");var u=x.getAttribute("src");var z;if(u.indexOf("data:image/png;base64,")===0){z=u}else{var t=a.utils.getAbsolutePath(m);var y=t.substr(0,t.lastIndexOf("/"));z=[y,w,u].join("/")}n[w].elements[s]={height:0,width:0,src:"",ready:false,image:v};v.onload=function(A){g(v,s,w)};v.onerror=function(A){r=true;q();k()};v.src=z}function h(){for(var t in n){var v=n[t];for(var s in v.elements){var w=v.elements[s];var u=w.image;u.onload=null;u.onerror=null;delete w.image;delete v.elements[s]}delete n[t]}}function p(){for(var s in n){if(s!="properties"){for(var t in n[s].elements){if(!n[s].elements[t].ready){return}}}}if(e===false){clearInterval(i);c(n)}}function g(s,u,t){if(n[t]&&n[t].elements[u]){n[t].elements[u].height=s.height;n[t].elements[u].width=s.width;n[t].elements[u].src=s.src;n[t].elements[u].ready=true;q()}else{a.utils.log("Loaded an image for a missing element: "+t+"."+u)}}l()}})(jwplayer);(function(a){a.html5.api=function(c,n){var m={};var h=document.createElement("div");c.parentNode.replaceChild(h,c);h.id=c.id;m.version=a.version;m.id=h.id;var l=new a.html5.model(m,h,n);var j=new a.html5.view(m,h,l);var k=new a.html5.controller(m,h,l,j);m.skin=new a.html5.skin();m.jwPlay=function(o){if(typeof o=="undefined"){g()}else{if(o.toString().toLowerCase()=="true"){k.play()}else{k.pause()}}};m.jwPause=function(o){if(typeof o=="undefined"){g()}else{if(o.toString().toLowerCase()=="true"){k.pause()}else{k.play()}}};function g(){if(l.state==a.api.events.state.PLAYING||l.state==a.api.events.state.BUFFERING){k.pause()}else{k.play()}}m.jwStop=k.stop;m.jwSeek=k.seek;m.jwPlaylistItem=k.item;m.jwPlaylistNext=k.next;m.jwPlaylistPrev=k.prev;m.jwResize=k.resize;m.jwLoad=k.load;function i(o){return function(){return l[o]}}function f(o,q,p){return function(){var r=l.plugins.object[o];if(r&&r[q]&&typeof r[q]=="function"){r[q].apply(r,p)}}}m.jwGetItem=i("item");m.jwGetPosition=i("position");m.jwGetDuration=i("duration");m.jwGetBuffer=i("buffer");m.jwGetWidth=i("width");m.jwGetHeight=i("height");m.jwGetFullscreen=i("fullscreen");m.jwSetFullscreen=k.setFullscreen;m.jwGetVolume=i("volume");m.jwSetVolume=k.setVolume;m.jwGetMute=i("mute");m.jwSetMute=k.setMute;m.jwGetStretching=i("stretching");m.jwGetState=i("state");m.jwGetVersion=function(){return m.version};m.jwGetPlaylist=function(){return l.playlist};m.jwGetPlaylistIndex=m.jwGetItem;m.jwAddEventListener=k.addEventListener;m.jwRemoveEventListener=k.removeEventListener;m.jwSendEvent=k.sendEvent;m.jwDockSetButton=function(r,o,p,q){if(l.plugins.object.dock&&l.plugins.object.dock.setButton){l.plugins.object.dock.setButton(r,o,p,q)}};m.jwControlbarShow=f("controlbar","show");m.jwControlbarHide=f("controlbar","hide");m.jwDockShow=f("dock","show");m.jwDockHide=f("dock","hide");m.jwDisplayShow=f("display","show");m.jwDisplayHide=f("display","hide");m.jwGetLevel=function(){};m.jwGetBandwidth=function(){};m.jwGetLockState=function(){};m.jwLock=function(){};m.jwUnlock=function(){};var b=d(l,j,k);function e(q,p,o){return function(){q.addEventListener(a.api.events.JWPLAYER_PLAYLIST_LOADED,b);if(q.config.playlistfile){q.loadPlaylist(q.config.playlistfile)}else{if(typeof q.config.playlist=="array"){q.loadPlaylist(q.config.file)}else{q.loadPlaylist(q.config)}}}}function d(q,p,o){return function(r){q.removeEventListener(a.api.events.JWPLAYER_PLAYLIST_LOADED,b);q.setupPlugins();p.setup();var r={id:m.id,version:m.version};o.sendEvent(a.api.events.JWPLAYER_READY,r);if(a.utils.exists(playerReady)){playerReady(r)}if(a.utils.exists(window[q.config.playerReady])){window[q.config.playerReady](r)}q.sendEvent(a.api.events.JWPLAYER_PLAYLIST_LOADED,{playlist:q.playlist});if(q.config.autostart&&!a.utils.isIOS()){o.item(q.item)}}}if(l.config.chromeless&&!a.utils.isIPad()){setTimeout(e(l,j,k),25)}else{m.skin.load(l.config.skin,e(l,j,k))}return m}})(jwplayer)}; 
  • trunk/fl5/src/com/longtailvideo/jwplayer/player/JavascriptAPI.as

    r1839 r1845  
    129129                                ExternalInterface.addCallback("jwPlaylistNext", js_playlistNext); 
    130130                                ExternalInterface.addCallback("jwPlaylistPrev", js_playlistPrev); 
    131                                 ExternalInterface.addCallback("jwDockSetButton", js_dockSetButton); 
    132131                                ExternalInterface.addCallback("jwSetMute", js_mute); 
    133132                                ExternalInterface.addCallback("jwSetVolume", js_volume); 
    134133                                ExternalInterface.addCallback("jwSetFullscreen", js_fullscreen); 
    135134                                 
    136                                 // Showing and hiding player controls. 
    137                                 ExternalInterface.addCallback("jwShowControlbar", js_showControlbar); 
    138                                 ExternalInterface.addCallback("jwHideControlbar", js_hideControlbar); 
    139                                 ExternalInterface.addCallback("jwShowDock", js_showDock); 
    140                                 ExternalInterface.addCallback("jwHideDock", js_hideDock); 
    141                                 ExternalInterface.addCallback("jwShowDisplay", js_showDisplay); 
    142                                 ExternalInterface.addCallback("jwHideDisplay", js_hideDisplay); 
    143  
     135                                // Player Controls APIs 
     136                                ExternalInterface.addCallback("jwControlbarShow", js_showControlbar); 
     137                                ExternalInterface.addCallback("jwControlbarHide", js_hideControlbar); 
     138 
     139                                ExternalInterface.addCallback("jwDisplayShow", js_showDisplay); 
     140                                ExternalInterface.addCallback("jwDisplayHide", js_hideDisplay); 
     141                                 
     142                                ExternalInterface.addCallback("jwDockHide", js_hideDock); 
     143                                ExternalInterface.addCallback("jwDockSetButton", js_dockSetButton); 
     144                                ExternalInterface.addCallback("jwDockShow", js_showDock); 
     145                                 
    144146                                // UNIMPLEMENTED 
    145147                                //ExternalInterface.addCallback("jwGetBandwidth", js_getBandwidth);  
  • trunk/fl5/src/com/longtailvideo/jwplayer/player/PlayerVersion.as

    r1843 r1845  
    33         
    44        public class PlayerVersion { 
    5                 protected static var _version:String = '5.7.1843'; 
     5                protected static var _version:String = '5.7.1845'; 
    66                 
    77                public static function get version():String { 
Note: See TracChangeset for help on using the changeset viewer.