var update = {
    
    setValue:{
            
    },
    
    loadReady:function(){
        update.showUpdateContent();
        $("[name=refresh_button]").click(update.refreshUpdate);
    },
    
    showUpdateContent:function(){
        $.ajax({
                url:'/modules/update/refreshUpdateContent.php',
                cache:true,
                data:{'requestByAjax':'ajax'},
                type:'GET',
                success:function(data, status){
                    try{                        
                       $("#showUpdate").empty().append(data); 
                    }catch(e){
                        
                    }
                    
                }
        });
    },
    
    refreshUpdate:function(){
        //update.showUpdateContent();
        //alert('UPDATE JA');
        $("#showUpdate").append("UPDATE JA \n");
    }
    
}