var h_time;
var _infoMy;
function out(){
    h_time = setTimeout(function(){
        jQuery("#info_my").removeClass("f_over");
        $(_infoMy).remove();
    },500)
}

function showimpress(uid,_this) {
    if($("#info_my").length<=0){
        _infoMy = $('<div class="myself_info_w" id="info_my"></div>');
    }
    $("body").append(_infoMy);
    var _offset = jQuery(_this).offset();
    jQuery("#info_my").css({
        left : _offset.left,
        top : _offset.top-203
    })
    var url = "/jingliren/showimpress/"+uid;
    jQuery.post(url, true,function(data) {
        jQuery("#info_my").html(data);

    })
    jQuery("#info_my").addClass("f_over");
    clearTimeout(h_time)

    jQuery("#info_my").mouseover(function(){
        if(jQuery("#info_my").hasClass("f_over")){
            clearTimeout(h_time)
        }
    })

    jQuery("#info_my").mouseleave(function(){
        jQuery("#info_my").removeClass("f_over")
        $(_infoMy).remove();
    })
}

function showright(ele,_this) {
    jQuery('#words_'+ele).show();
    jQuery(_this).addClass("manager_info_list_bg");
}

function hideright(ele,_this) {
    jQuery('#words_'+ele).hide();
    jQuery(_this).removeClass("manager_info_list_bg")
}
