
$(function () {
    $('ul.n2 a').not($('ul.n2 a.hover')).hover(function () {
        $(this).find('p').stop().animate({ top: '-43px' }, 300);
        $(this).find('b').stop().animate({ top: '0' }, 300);
    }, function () {
        $(this).find('p').stop().animate({ top: '0' }, 200);
        $(this).find('b').stop().animate({ top: '43px' }, 200);
    })
})
