﻿
//http://jquery.lukelutman.com/plugins/flash/
(function($) {
    function init() {
        var lang = isRtl == "1" ? "he" : "en";
        $("#flashMovie").flash(
            { src: 'http://data.fxglobe.com/flash/screens_' + lang + ".swf", width: 980, height: 320, wmode: "opaque" },
            //{ src: 'sflash/screens_' + lang + ".swf", width: 980, height: 320, wmode: "opaque" },
            { expressInstall: true }
        );
    }

    $(document).ready(function() {
        init();
    });
})(jQuery);