// JavaScript Document
$(document).ready(function(){
	$.ajax({
		   type: "POST",
		   url:"modulos/mural/response.php",
		   
		  beforeSend: function() {
			   $('#recado_list').html("<li>carregando...</li>");
		   },
		   success: function(txt) {
			   $('#recado_list').html(txt);
		   }
    });
	var refreshId = setInterval(function() {
		$.ajax({
		   type: "POST",
		   url:"modulos/mural/response.php",
		   
		  beforeSend: function() {			   
			   $('#recado_list').slideTogle;
		   },
		   success: function(txt) {
			   $('#recado_list').html(txt);
			   $('#recado_list').slideTogle;
			   
		   }
    })
	}, 9000);
});
