$().ready(function(){
    $('#show_top_read').click(function () {
        $('#top_publish').hide()
        $('#top_comment').hide()
        $('#top_read').show()
        return false
    })

    $('#show_top_publish').click(function () {
        $('#top_comment').hide()
        $('#top_read').hide()
        $('#top_publish').show()
        return false
    })

    $('#show_top_comment').click(function () {
        $('#top_publish').hide()        
        $('#top_read').hide()
        $('#top_comment').show()
        return false
    })
    
    $('#show_top5ByCommentNews').click(function () {
        $('#top5ByCommentNews').show()        
        $('#top5ByReadNews').hide()
        return false
    })

    $('#show_top5ByReadNews').click(function () {
        $('#top5ByCommentNews').hide()
        $('#top5ByReadNews').show()
        return false
    })


});
