function voteup(msgid) {
    $.post('voteup.php',{ id: msgid },function(data) {$('#votes_' + msgid).html(data); },'json');
    $('#votes_'+ msgid).parent().next().fadeOut('slow');
    $('#votes_'+ msgid).parent().next().next().fadeOut('slow');
}
function votedown(msgid) {
    $.post('votedown.php',{ id: msgid },function(data) { $('#votes_' + msgid).html(data);},'json');
    $('#votes_'+ msgid).parent().next().fadeOut('slow');
    $('#votes_'+ msgid).parent().next().next().fadeOut('slow');
}