﻿/*! jquery.swfobject.license.txt *//*

jQuery SWFObject Plugin v1.0.3 <http://jquery.thewikies.com/swfobject/>
Copyright (c) 2008 Jonathan Neal
This software is released under the MIT License <http://www.opensource.org/licenses/mit-license.php>
This software is released under the GPL License <http://www.opensource.org/licenses/gpl-2.0.php>

SWFObject v2.1 <http://code.google.com/p/swfobject/>
Copyright (c) 2007-2008 Geoff Stearns, Michael Williams, and Bobby van der Sluis
This software is released under the MIT License <http://www.opensource.org/licenses/mit-license.php>

jQuery v1.2.6 <http://jquery.com/>
Copyright (c) 2008 John Resig
This software is released under the MIT License <http://www.opensource.org/licenses/mit-license.php>
This software is released under the GPL License <http://www.opensource.org/licenses/gpl-2.0.php>

*/
/*jslint
passfail: false,
white: true,
browser: true,
widget: false,
sidebar: false,
rhino: false,
safe: false,
adsafe: false,
debug: false,
evil: false,
cap: false,
on: false,
fragment: false,
laxbreak: false,
forin: true,
sub: false,
css: false,
undef: true,
nomen: false,
eqeqeq: true,
plusplus: false,
bitwise: true,
regexp: false,
onevar: true,
strict: false
*/
/*global
jQuery,
ActiveXObject
*/

(function($) {
    /* $.flashPlayerVersion */
    $.flashPlayerVersion = function() {
        var flashVersion, activeX = null, fp6Crash = false, shockwaveFlash = 'ShockwaveFlash.ShockwaveFlash';

        // If Internet Explorer
        if (!(flashVersion = navigator.plugins['Shockwave Flash'])) {
            try {
                activeX = new ActiveXObject(shockwaveFlash + '.7');
            }
            catch (errorA) {
                try {
                    activeX = new ActiveXObject(shockwaveFlash + '.6');

                    flashVersion = [6, 0, 21];

                    activeX.AllowScriptAccess = 'always';
                }
                catch (errorB) {
                    if (flashVersion && flashVersion[0] === 6) {
                        fp6Crash = true;
                    }
                }

                if (!fp6Crash) {
                    try {
                        activeX = new ActiveXObject(shockwaveFlash);
                    }
                    catch (errorC) {
                        flashVersion = 'X 0,0,0';
                    }
                }
            }

            if (!fp6Crash && activeX) {
                try {
                    // Will crash fp6.0.21/23/29
                    flashVersion = activeX.GetVariable('$version');
                }
                catch (errorD) { }
            }
        }
        // If NOT Internet Explorer
        else {
            flashVersion = flashVersion.description;
        }

        flashVersion = flashVersion.match(/^[A-Za-z\s]*?(\d+)(\.|,)(\d+)(\s+r|,)(\d+)/);

        return [flashVersion[1] * 1, flashVersion[3] * 1, flashVersion[5] * 1];
    } ();



    /* $.flashExpressInstaller */
    $.flashExpressInstaller = 'expressInstall.swf';



    /* $.hasFlashPlayer */
    $.hasFlashPlayer = ($.flashPlayerVersion[0] !== 0);



    /* $.hasFlashPlayerVersion */
    $.hasFlashPlayerVersion = function(options) {
        var version = $.flashPlayerVersion;

        options = (/string|integer/.test(typeof options)) ? options.toString().split('.') : options;

        var versionBuild = version[0] << 16 | version[1] << 8 | version[2];
        var optionsBuild = options[0] << 16 | options[1] << 8 | options[2];

        return (options) ? versionBuild >= optionsBuild : (flashVersion[0] !== 0);
    };



    /* $.flash */
    $.flash = function(options) {
        // Check if Flash is installed, return false if isn't
        if (!$.hasFlashPlayer) {
            return false;
        }

        // Create the swf filename variable, <param> attributes, dom sandbox, 4 array caches, and 4 free caches
        var movieFilename = options.swf || '', paramAttributes = options.params || {}, buildDOM = document.createElement('body'), aArr, bArr, cArr, dArr, a, b, c, d;

        // Set the default height and width if not already set
        options.height = options.height || 180;
        options.width = options.width || 320;

        // Inject ExpressInstall if "hasVersion" is requested and the version requirement is not met
        if (options.hasVersion && !$.hasFlashPlayerVersion(options.hasVersion)) {
            $.extend(options, {
                id: 'SWFObjectExprInst',
                height: Math.max(options.height, 137),
                width: Math.max(options.width, 214)
            });

            movieFilename = options.expressInstaller || $.flashExpressInstaller;

            paramAttributes = {
                flashvars: {
                    MMredirectURL: window.location.href,
                    MMplayerType: ($.browser.msie && $.browser.win) ? 'ActiveX' : 'PlugIn',
                    MMdoctitle: document.title.slice(0, 47) + ' - Flash Player Installation'
                }
            };
        }

        // Append flashvars to param if already specified separately
        if (options.flashvars && typeof paramAttributes === 'object') {
            $.extend(paramAttributes, {
                flashvars: options.flashvars
            });
        }

        // Delete the reformatted constructors
        for (a in (b = ['swf', 'expressInstall', 'hasVersion', 'params', 'flashvars'])) {
            delete options[b[a]];
        }

        // Create the OBJECT tag attributes
        aArr = [];
        for (a in options) {
            if (typeof options[a] === 'object') {
                bArr = [];
                for (b in options[a]) {
                    bArr.push(b.replace(/([A-Z])/, '-$1').toLowerCase() + ':' + options[a][b] + ';');
                }
                options[a] = bArr.join('');
            }
            aArr.push(a + '="' + options[a] + '"');
        }
        options = aArr.join(' ');

        // Create the PARAM tags
        if (typeof paramAttributes === 'object') {
            aArr = [];
            for (a in paramAttributes) {
                if (typeof paramAttributes[a] === 'object') {
                    bArr = [];
                    for (b in paramAttributes[a]) {
                        if (typeof paramAttributes[a][b] === 'object') {
                            cArr = [];
                            for (c in paramAttributes[a][b]) {
                                if (typeof paramAttributes[a][b][c] === 'object') {
                                    dArr = [];
                                    for (d in paramAttributes[a][b][c]) {
                                        dArr.push(d.replace(/([A-Z])/, '-$1').toLowerCase() + ':' + paramAttributes[a][b][c][d] + ';');
                                    }
                                    paramAttributes[a][b][c] = dArr.join('');
                                }
                                cArr.push(c + '{' + paramAttributes[a][b][c] + '}');
                            }
                            paramAttributes[a][b] = cArr.join('');
                        }
                        bArr.push(window.escape(b) + '=' + window.escape(paramAttributes[a][b]));
                    }
                    paramAttributes[a] = bArr.join('&amp;');
                }
                aArr.push('<PARAM NAME="' + a + '" VALUE="' + paramAttributes[a] + '">');
            }
            paramAttributes = aArr.join('');
        }

        // Unify the visual display between all browsers
        if (!(/style=/.test(options))) {
            options += ' style="vertical-align:text-top;"';
        }

        if (!(/style=(.*?)vertical-align/.test(options))) {
            options = options.replace(/style="/, 'style="vertical-align:text-top;');
        }

        // Specify the object and param tags between browsers
        if ($.browser.msie) {
            options += ' classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"';
            paramAttributes = '<PARAM NAME="movie" VALUE="' + movieFilename + '">' + paramAttributes;
        }
        else {
            options += ' type="application/x-shockwave-flash" data="' + movieFilename + '"';
        }

        // Return the jQuery'd flash OBJECT
        buildDOM.innerHTML = '<OBJECT ' + options + '>' + paramAttributes + '</OBJECT>';
        return $(buildDOM.firstChild);
    };

    /* $.fn.flash */
    $.fn.flash = function(options) {
        if (!$.hasFlashPlayer) {
            return this;
        }

        var a = 0, each;

        while ((each = this.eq(a++))[0]) {
            each.html($.flash($.extend({}, options)));

            if (each[0].firstChild.getAttribute('id') === 'SWFObjectExprInst') {
                a = this.length;
            }
        }

        return this;
    };
} (jQuery));