// animovany hover ikonky k referenci

$(document).ready(function(){ 
    $(".ref-preview a").append("<span></span>"); 
    $(".ref-preview a").hover(function(){ 
        $(this).children("span").fadeIn(600); 
    },function(){ 
        $(this).children("span").fadeOut(200); 
    }); 
});
