$(function() {
    
    hideAll();
    
    $(".galeria-row li img").mouseenter(function(e){
        hideAll();
        $(e.target).parent().parent().find("label, .hover-text").fadeIn('150');
    }).mouseleave(function(e){
        $(e.target).parent().parent().find("label, .hover-text").fadeOut('150');
    });
    
    function hideAll(){
        $(".hover-text,.galeria-row label").hide();    
    }
});
