$(function() {
    $('.banner .slides').cycle({
        timeout: 4000,
        speed: 1000,
        cleartypeNoBg: true,
        prev: '.banner .prev',
        next: '.banner .next',
        pager: '.banner .controllers'
    });
    
    var slider = $('.banner'),
        switcher = $('#view_switcher'),
        animate = false;
    
    switcher.click(function() {        
        if (!animate) {
            animate = true;
            
            if ($(this).is('.view_2d')) {
                slider.fadeOut(500, function() {
                    animate = false;
                    switcher.attr('class', 'view_3d');
                    switcher.attr('title', 'Zmień na widok 2D');
                });
            } else if ($(this).is('.view_3d')) {
                slider.fadeIn(500, function() {
                    animate = false;
                    switcher.attr('class', 'view_2d');
                    switcher.attr('title', 'Zmień na widok 3D');
                });
            }
        }
    });
});
