/***************************/
//@Author: moo
//@website: www.moogade.com
//@email: naiaeza@gmail.com
/***************************/

$(document).ready(function(){
    //global vars
    function updateShoutboxHealth(post_type){
        
        var loading = $("#loading_"+post_type);
        var messageList = $("#cat_posts_"+post_type+">ul");
        messageList.hide();
        loading.fadeIn();
        $.ajax({
            type: "POST",
            url: "init/getdetail.php",
            data: "action=select&post_type="+post_type,
            complete: function(data){
                loading.fadeOut();
                messageList.html(data.responseText);
                messageList.fadeIn(2000);
            }
        });
    }

    updateShoutboxHealth(12);
    updateShoutboxHealth(13);
    updateShoutboxHealth(14);
    updateShoutboxHealth(15);

});

