(function($) {
    $(function() {
        var $category = $('ul.furniture_child_category');
        $('div.columnBox_long div.add_header_l_up>ul li:contains(好家俱)').hover(function() {
            $category.show().css('top', $(this).offset().top + 18 + 'px').css('left', $(this).offset().left + 'px');
        }, function(e) {
            e.stopPropagation();
            $category.hide();
        });
    });
})(jQuery);
