$(document).ready(function(){	
    $("#submenu li:last").addClass("last");

    $('.telewizorek').flash({
        src: '/_p/flash/rotator/rotator.swf',
        width: 524,
        height: 181,
        wmode: 'transparent'
    });

    $("#dz").click(function() {
        if($.cookie('plec')=='c')
        {
            $(this).removeClass();
            $(this).addClass('dz');
            $.cookie('plec', 'dz');
        }
        else
        {
            $(this).removeClass();
            $(this).addClass('c');
            $.cookie('plec', 'c');
        }
    });

    if($.cookie('plec')=='c')
    {
        $('#dz').addClass('c');
    }
    else
    {
        $('#dz').addClass('dz');
    }

    $('.gallery a').lightBox();
    $("#menu li:last").addClass('last');

    $(".toggler").click(function() {
        $(this).parent().next(".togging").slideToggle("slow");
        return false;
    })

    $('.nazwa_grupy').click(function() {
        $('#submenu ul').slideUp();
        $(this).next('ul').slideToggle();
        return false;
    });

    $(".sub_gallery .active").parent().parent().show();

});