    /**
     * Nacteni skriptu po nacteni stranky
     */

    $(document).ready(function(){
        $('a.lightbox').lightBox();
    });

    function confirmLink( theLink, theMessage ) {

        if ( typeof( window.opera ) != 'undefined' ) {
            return true;
        }

        var is_confirmed = confirm( theMessage );
        if ( is_confirmed == true ) {
            window.location.href = theLink;
        }
        return is_confirmed;

    }

    function showSearch() {
        $('#pSearch').slideToggle('slow');
    }


