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

