Subversion Repositories My Stuff

Rev

Rev 13 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
13 kardasa 1
$(document).ready(function(){
2
        $('a.group').tooltip({
3
                effect: 'slide',
4
                tipClass : 'imgtooltip',
5
                opacity : 0.7
6
        }).dynamic({ bottom: { direction: 'down', bounce: true } });
17 kardasa 7
 
8
        $('.rssLayout').find('a').removeAttr('title');
9
 
10
        $('.rssLayout').find('img').tooltip({
11
                        effect: 'fade',
12
                        tipClass : 'imgtooltip',
13
                        opacity : 0.7,
14
                        position : 'top left'
15
        }).dynamic({ bottom: { direction: 'down', bounce: true } });
16
 
17
        $('#printing').find('img').tooltip({
18
                effect: 'fade',
19
                tipClass : 'imgtooltip',
20
                opacity : 0.7,
21
                position : 'top left'
22
        }).dynamic({ bottom: { direction: 'down', bounce: true } });
23
 
13 kardasa 24
});