function postenshow(e) {
    //jQuery(this).css('background', 'url(/images/post.gif)');
//    jQuery(this).children(".mapempty").css('src', '/images/post.gif');
jQuery(this).children(".mapempty").css('visibility', 'visible');
    var pid = jQuery(this).attr('id').split('_');
    var pname = "#smallpost" + pid[1];

    jQuery(pname).css('visibility', 'visible');
    
    return false;
}

function postenhide(e) {
jQuery(this).children(".mapempty").css('visibility', 'hidden');
//    jQuery(this).css('background', 'none');
    var pid = jQuery(this).attr('id').split('_');
    var pname = "#smallpost" + pid[1];

    jQuery(pname).css('visibility', 'hidden');
    return false;
}

jQuery(document).ready(function() {
    jQuery("a.postenref").bind("mouseenter", postenshow);
    jQuery("a.postenref").bind("mouseleave", postenhide);
});

