$(document).ready(function(){

    $('#logged_in_user_list a em').each(function(i){
        $(this).replaceWith("<span>" + $(this).text() + "</span>");
    });

    $('.activeusers a em').each(function(i){
        $(this).replaceWith("<span>" + $(this).text() + "</span>");
    });

    $('a.postlink').click(function(){
        
        window.open($(this).attr('href'));
        
        return false;
        
    });
    
});