function getContacts() {
	Ajax.Responders.register({
	  onCreate: function() {
		Element.update('notification','<img src="images/littleloader.gif" width="32px" height="32px"/>');
	  },
	  onComplete: function() {
		Element.update('notification','');
	  }
	});
	new Ajax.Updater('newsContainer', 'who.php', 
	{ 
		method: 'get' 
	});
}

function today() {
	Ajax.Responders.register({
	  onCreate: function() {
		Element.update('notification','<img src="images/littleloader.gif" width="32px" height="32px"/>');
	  },
	  onComplete: function() {
		Element.update('notification','');
	  }
	});
	new Ajax.Updater('newsContainer', 'today.php', 
	{ 
		method: 'get' 
	});
}

function highlights() {
	Ajax.Responders.register({
	  onCreate: function() {
		Element.update('notification','<img src="images/littleloader.gif" width="32px" height="32px"/>');
	  },
	  onComplete: function() {
		Element.update('notification','');
	  }
	});
	new Ajax.Updater('newsContainer', 'highlights.php', 
	{ 
		method: 'get' 
	});
}