    /*
    2010 (c) FLIPFLIP.RU
    */

    var minHeight = 600;

    $(document).ready(function() {


        init();

        $(window).resize(function() {
            resize();
        });
    });

    function resize() {
        var width = $(window).width();
        var height = $(window).height();

        if (height < minHeight) {
            height = minHeight;
        }

        $('#fixed-background').width(width).height(height).find('embed').attr({
            width: width,
            height: height
        });

        $('#background-dotted').width(width).height(height);
    }

    function init() {
        var width = $(document).width();
        var height = $(window).height();

        if (height < minHeight) {
            height = minHeight;
        }

        $('#fixed-background').flash({
            src: '/swf/liga_anim2.swf',
            width: width,
            height: height,
            allowfullscreen: false,
            allowscriptaccess: 'always',
            allowNetworking: 'none',
            wmode: 'transparent'
        },
        { version: 9 }).width(width).height(height);

        $('#background-dotted').width(width).height(height);
    }

