var ProfileService = {
	init: function() {
		window.setTimeout('ProfileService.updateLastActive()', 1000 * 60 * 2);
	},
	
	updateLastActive: function() {
		new Ajax.Request(Common.HTML_ROOT + '/profile/include/ajax/updateLastActive.php');
		
		window.setTimeout('ProfileService.updateLastActive()', 1000 * 60 * 2);
	}
}

ProfileService.init();
