 $(function(){
               
                /* demo4 */
                $('ul#about-milky a').imgPreview({
                    containerID: 'imgPreviewWithStyles',
                    imgCSS: {
                        // Limit preview size:
                        height: 300
                    },
                    // When container is shown:
                    onShow: function(link){
                        $('<span>' + $(link).text() + '</span>').appendTo(this);
                    },
                    // When container hides: 
                    onHide: function(link){
                        $('span', this).remove();
                    }
                });
               
            });
