$(document).ready(function() {
    $('#menu ul li').hover(function(e) {
        e.stopPropagation();
        $(this).css('zIndex', 20001);
        if($('ul li', $(this)).length)
        {
            $('a:first', $(this)).css('paddingBottom','20px');
        }
    }, function() {
        $(this).css('zIndex', 20000);
        if($('ul li', $(this)).length)
        {
            $('a:first', $(this)).css('paddingBottom','28px');
        }
    });
    $('ul.menuList').hover(function(e) {
        e.stopPropagation();
        $('#b1,#b2,#b3,#b4,#b5').FreezeAllBubblePopups();
         },function(){
            $('#b1,#b2,#b3,#b4,#b5').UnfreezeAllBubblePopups();
         }
         );
    $('ul.menuList li').hover(function(e) {
        e.stopPropagation();
        $('#b1,#b2,#b3,#b4,#b5').FreezeAllBubblePopups();
        $('a', this).stop().animate({
            'paddingLeft' : '5px'
        }, 100);
    }, function() {
        $('#b1,#b2,#b3,#b4,#b5').UnfreezeAllBubblePopups();
        $('a', this).stop().animate({
            'paddingLeft' : '0px'
        }, 100)
    });
});

