$(document).ready(function(){
	// This function is executed once the document is loaded
	
	// Caching the jQuery selectors:
	var count = $('.onlineWidget .count');
	var panel = $('.onlineWidget .panel');
	var timeout;
	
	// Loading the number of users online into the count div:
	count.load('who-is-online/online.php');
	
	// Binding functions to custom events:
	panel.load('who-is-online/geodata.php');
	
	
});
