$(document).ready(function()
{
    $('#rozmiar a').click(function()
    {
        var link = $(this).attr('href');
        $('#film').html('<div id="realMovie" class="rogi"></div>');

        $(this).parent().find('.active').removeClass('active');
        $(this).addClass('active');
        
        movieToLoad = 'film_'+link+'.swf';
        
        switch(link)
        {
            case '960':
                movieWidth = 960;
                movieHeight = 540;

                $('#film').animate(
                    {
                        width: movieWidth,
                        height: movieHeight
                    }, 500, 'linear', displayMovie
                );
                $('#rozmiar').animate(
                    {width: movieWidth},
                    500, 'linear'
                );
            break;

            case '640':
                movieWidth = 640;
                movieHeight = 360;
                $('#film').animate(
                    {
                        width: movieWidth,
                        height: movieHeight
                    }, 500, 'linear',displayMovie
                );
                $('#rozmiar').animate(
                    {width: movieWidth},
                    500, 'linear'
                );
            break;
        }
     
        return false;
    }).eq(0).click();
})


function displayMovie()
{
    var params = {
        allowFullScreen: true,
        wmode: 'opaque',
        bgcolor:'#000000'
    };
    swfobject.embedSWF("/images/"+movieToLoad, "realMovie", movieWidth, movieHeight, "9.0.0", "/images/expressInstall.swf", {}, params);
}
var movieToLoad = '';
var movieWidth =0;
var movieHeight = 0;
