$(document).ready(function() {
    if (typeof($.fancybox) != "undefined") {
        $("a.galeria").fancybox({
            'transitionIn'    :    'elastic',
            'transitionOut'   :    'elastic',
            'speedIn'         :    300, 
            'speedOut'        :    200, 
            'overlayShow'     :    true,
            'autoScale'       :    true
        });
    }
    
    if ($("#tabs").length > 0) {
        $("#tabs").tabs();
    }
    
    if ($("table.zamestnanci").length > 0) {
        $("table.zamestnanci span").mouseenter(function() {
            $(".vizitka").hide();
            var className = $(this).attr('class');
            $("." + className).show();
        });
    }
});                
