var Time = Class.create({
	initialize: function(e) {
		this.e = e;
		this.u = '/time.php';
		
		this.poll();
	},
	
	poll: function() {
		new Ajax.PeriodicalUpdater(this.e, this.u, {
		  method: 'get', frequency: 3, decay: 2
		});
	}
});
