$(document).ready(function()
{
    $('.sidebar-notice').css('opacity', 0);
    $('.sidebar-notice').show();
    
    $('#sidebar ul li').mouseover(function()
    {
        $(this).children('.sidebar-title').stop(false, false).animate({top: "7px"}, 300);
        
        var notice = $(this).children('a').children('.sidebar-notice');
        
        
        notice.stop(false, false).animate({opacity: 1}, 600);
        
    }).mouseout(function()
    {
        $(this).children('.sidebar-title').stop(false, false).animate({top: "50px"}, 300);
        
        var notice = $(this).children('a').children('.sidebar-notice');
        
        notice.stop(false, false).animate({opacity: 0}, 600);

    });
});
