Subversion Repositories My Stuff

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
13 kardasa 1
/*#######################################################################
2
# This script is distributed in the hope that it will be useful,
3
# but WITHOUT ANY WARRANTY; without even the implied warranty of
4
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
5
# GNU General Public License for more details.
6
# Author: Andrzej Kardaƛ
7
# License: GPLv3
8
# The full version of the licencse can be obtainted by visiting:
9
# http://www.gnu.org/licenses/gpl.html
10
#######################################################################*/
11
$(document).ready(function(){
12
        var $menu = $('.artmenu');
13
        $menu.children('li.nav_menu').each(function(){
14
                var $this = $(this);
15
                var $anchor = $this.children('a');
16
                $anchor.data('width',$anchor.width());
17
 
18
                $this.bind('mouseenter',function(){
19
                        $menu.find('ul.submenu').stop(true,true).hide();
20
                        $anchor.stop().animate({'width':'180px'},300,function(){
21
                                $this.find('ul.submenu').slideDown(500);
22
                        });
23
                }).bind('mouseleave',function(){
24
                        $this.find('ul.submenu').stop(true,true).hide();
25
                        $anchor.stop().animate({'width':$anchor.data('width')+'px'},300);
26
                });
27
        });
28
});