Subversion Repositories My Stuff

Rev

View as "text/plain" | Blame | Last modification | View Log | RSS feed

$(document).ready(function(){
        $('.subgallery').tooltip({
                        effect: 'slide',
                        tipClass : 'gallerytooltip',
                        opacity : 0.9
                }).dynamic({ bottom: { direction: 'down', bounce: true } });
       
        $('.subgallery img').reflect({height: 0.3, opacity: 0.7});
       
        $('.subgallery').hover(function() {
                    $(this).find('img:first').reflect({height: 0.3, opacity: 1});
                    $(this).find('img:first').addClass('hovered');
                }, function() {
                        $(this).find('img:first').reflect({height: 0.3, opacity: 0.7});
                        $(this).find('img:first').removeClass('hovered');
                });
       
        $('div.scrollable_gallery').scrollable({
                mousewheel: true,
                keyboard: true,
                next: ".next",
                prev: ".prev",
                speed: 500
        });
});