$(document).ready(function() {
	// Stuff to do as soon as the DOM is ready;
	$(document).everyTime(15000, function(e){
		$.get('/includes/update_online_status.php', function(data){
			$('#whos_online_target').html(data);
		}),
		$.get('/includes/update_friends_awaiting_confirmation.php', function(data){
			$('#friends_awaiting_confirmation_target').html(data);
		})
	});
});

