// JavaScript Document

var liId = -1;
var aId = -1;


$(document).ready(function()
        {
            nextPrev();
//*****************DIV u mysi
            var x=15;
            var y=-8;
            
            
            $("body").bind("mousemove",function(evt){
              var id = evt.target.id.substring(3);
              
              $('.galleryFotoName').css("left",evt.pageX+x);
              $('.galleryFotoName').css("top",evt.pageY+y);
            });
      
//****************Objeveni a shovani DIVu
            $(".leftMenuButton").bind("mouseover",function(evt){
              var id = evt.target.id.substring(1);
              aId = id;
              $(".galleryComment").hide(900);
              $('#div'+id).show(900);

            }).bind("mouseout",function(evt){
              var id = evt.target.id.substring(1);
            });
            
            $(".aImage").bind("mouseover",function(evt){
              var id = evt.target.id.substring(3);
              $('#fotoName'+id).fadeIn(500);
            }).bind("mouseout",function(evt){
              var id = evt.target.id.substring(3);
              $(".galleryFotoName").fadeOut(500);
            }); 

        });
        
 