$(document).ready(function() {
                $('.tx-chgallery-pi1 .thumbs a').lightBox();
                $('.tx-chgallery-pi1 .thumbs a').each(
                    function() {
                        var link = $(this).attr("title");
                        $(this).next('div').wrapInner('<a href="' + link + '" />');
                        $(this).next('div').animate({"opacity":"0"},"slow");
                    }
                );
                    $('.tx-chgallery-pi1 .thumbs a').hover(
                        function(){
                            $(this).next('div').stop().animate({"opacity": "1"}, "slow");
                        },
                        function(){
                            $(this).next('div').stop().animate({"opacity": "0"}, "slow");
                        }
                    );
                    /* SHOW DOWNLOAD while hover div */
                    $('.tx-chgallery-pi1 .thumbs div').live('mouseover mouseout', function(event){
                        if(event.type == 'mouseover'){
                            $(this).stop().animate({"opacity": "1"}, "slow");
                        }else{
                            $(this).stop().animate({"opacity": "0"}, "slow");
                        }
                        
                    });

            });
