$(function(){$('#container-gallery a').hover(function(e){var img_desc=$(this).children().attr('alt');if(img_desc!=""){var html='<div id="gallery-desc-window"><div id="gallery-desc-window-ousko"></div><div id="gallery-desc-window-top"></div><div id="gallery-desc-window-text"><h4>Popis:</h4><p>'+img_desc+'</p></div><div id="gallery-desc-window-bottom"></div></div>';$('body').append(html).children('#gallery-desc-window').hide().fadeIn(400);$('#gallery-desc-window').css('top',e.pageY).css('left',e.pageX+10);}},function(){$('#gallery-desc-window').remove();});$('#container-gallery a').mousemove(function(e){$('#gallery-desc-window').css('top',e.pageY).css('left',e.pageX+10);});});