$(document).ready(
    function () {
                            
        //mouse over
        $(".item").mouseenter(
            function () {
                var id = $(this).attr("id").substr(14);
                zobrazFace(id);                             //zobrazi maly obrazek s oblicejem
                vymenObrazek(id);                           //vymeni velky hlavni obrazek
                galleryShowHideOver();                      // 
            }
            );
                                
        //mouse out
        $(".item").mouseleave (
            function () {
                var id = $(this).attr("id").substr(14);
                
               
               
               //Set the opacity of all images to 0
                $('#_js_gallery a').css({
                    opacity: 0.0
                });

                //Get the first image and display it (set it to full opacity)
                $("#_js_gallery_" + id).css({
                    opacity: 1.0
                });
                
                 $("#_js_gallery a").removeClass("show");
                 $("#_js_gallery_" + id).addClass("show");
               
                
                skryjFace(id);
                galleryShowHideOut();
                
                
            }
        );
          
          
        //info blok
        $("._js_info_doleva").click(
            function () 
            {
                info();
                return false;
            }
        ); //click



        }
    ); //ready
            
 
