$(document).ready(function(){
    $("#content .event .box .img").mouseenter(function() {
        $('.text', this).show();
        $('img', this).addClass('active');
    }).mouseleave(function() {
        $('.text', this).hide();
        $('img', this).removeClass('active');
    });
    
    $("#koncerty .right #event-info .box .img").mouseenter(function() {
        $('.text', this).show();
        $('img', this).addClass('active');
    }).mouseleave(function() {
        $('.text', this).hide();
        $('img', this).removeClass('active');
    });
    
    $("#content .news .box .new").mouseenter(function() {
        $('.moreinfo', this).show();
    }).mouseleave(function() {
        $('.moreinfo', this).hide();
    });
    
    $('#content .gallery .box .galerias .more').hide();
    
    $("#content .gallery .box .galerias").mouseenter(function() {
        $('.more', this).show();
    }).mouseleave(function() {
        $('.more', this).hide();
    });

});
