jQuery(function($) {
    $('.menuHead').each(function() {
        var $self  = $(this),
            $ul    = $self.find('ul'),
            height = ($ul.children().size() * 50)+'px',
            width  = $self.width();

        // モバイルデバイスはclickをキャンセル
        if (navigator.userAgent.indexOf('Mobile') !== -1) {
            $self.click(function(e) {
                if (e.target.tagName !== 'SPAN') {
                    return false;
                }
            });
        }
    
        // width揃え
        $ul.width(width);
    
        // hover制御
        $self.hover(function() {
            $ul.addClass('show').stop().animate({ height: height }, 300, function (x, t, b, c, d) {
                return c * Math.sqrt(1 - (t=t/d-1)*t) + b;
            });
        }, function() {
            $ul.removeClass('show').stop().animate({height: 0 }, 200, 'swing');
        });
    });
});

