$(document).ready(function(){

    $('.goods_name').live('mouseover mouseout', function(event) {
        
        if (event.type == 'mouseover') {
            if(!$('#check_goods_name_width').length) {
                $('body').append('<div id="check_goods_name_width" style="position:absolute;top-1000px;left:-1000px;color:white;width:146px;line-height:20px;"></div>');
            }
            cur_h = $(this).height();

            if(!$(this).attr('h')) {
                $(this).attr('h', cur_h);
            }

            $('#check_goods_name_width').html($(this).find("a").html());
            var new_h = $('#check_goods_name_width').height();

            if(new_h>cur_h+6) {
                $(this).height(new_h);
                $(this).css('opacity', 0.8);
            }
        } else {
            //$(this).height($(this).attr('h'));
            $(this).css('height', $(this).attr('h')+'px');
            $(this).css('opacity', 1);
        }
    });


});
