function ajax_update2()
{
  var wrapperId 	=	'#monitors';
  var postFile	=	'index_monitors.php';
  $.post(postFile, function(data){$(wrapperId).slideUp('2000',function(){$(this).html(data).slideDown();}).html();});
  setTimeout('ajax_update2()', 80000);
}