jQuery(document).ready(function() 
{
 	jQuery("#mostra_data_hora").load("apps/php/include_data_hora.php");
   var refreshId = setInterval(function() 
   {
      jQuery("#mostra_data_hora").load('apps/php/include_data_hora.php?randval='+ Math.random());
   }, 30000);
});
