 function zmen(id){
                    switch(id){
                        case 0: $('#soukroma-osoba').show('fast', null, function() {
                                $('#firma').hide('fast');
                                $('#statni-sprava').hide('fast');
                            });
                        break;
                        case 1: $('#firma').show('fast', null, function() {
                                    $('#soukroma-osoba').hide('fast');
                                    $('#statni-sprava').hide('fast');
                                });
                        break;
                        case 2: $('#statni-sprava').show('fast', null, function() {
                                    $('#soukroma-osoba').hide('fast');
                                    $('#firma').hide('fast');
                                });
                        break;
                    }
                }

$(document).ready(function() {
                $('#text-p .galerie a').lightBox({
                    maxHeight: screen.height * 0.9,
                    maxWidth: screen.width * 0.9
                });
               
                $('#obrazky').crossSlide({
                    sleep: 10,
                    fade: 1
                }, [
                    { src: '/img/loop/1.png' },
                    { src: '/img/loop/2.png' },
                    { src: '/img/loop/3.png' },
                    { src: '/img/loop/4.png' }
                ]);
            });

