/*####################################################################### # This script is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # Author: Andrzej Kardaƛ # License: GPLv3 # The full version of the licencse can be obtainted by visiting: # http://www.gnu.org/licenses/gpl.html #######################################################################*/ $(document).ready(function(){ var $menu = $('.artmenu'); $menu.children('li.nav_menu').each(function(){ var $this = $(this); var $anchor = $this.children('a'); var $submenu = $menu.find('ul.submenu'); $anchor.data('width',$anchor.width()); $this.mouseenter(function(){ $submenu.stop(true,true).hide(); $anchor.stop().animate({'width':'227px'},300,function(){ $this.find('ul.submenu').slideDown(500); }); }).mouseleave(function(){ $submenu.stop(true,true).hide(); $anchor.stop().animate({'width':$anchor.data('width')+'px'},300); }); }); });