
$('#body').hide();
$.ajax({
			type: 'get',
			url: 'handler.php?time_start=1',
			success: function (html) {
			$('#body').show();
			
			}
		
		});


