PopulationClock = {
	initialize : function(time, population, rate) { // used to recalibrate data
		this.startTime = new Date(time);
		this.startPopulation = population;
		this.rate = rate;
		return
	},
	setClock : function() {
		
	},
	run : function(clockDiv) {
		if (this.installed) return;
		this.installed = true;
		var flashvars = {};
		var params = {wmode:'transparent'};
		var attributes = {};
		var swf = (("https:" == document.location.protocol) ? "fair_counter_secure.swf" : "fair_counter.swf");
		swfobject.embedSWF('../trinet/site/flash/'+swf, clockDiv, '210', '60', '7.0.0', null, flashvars, params, attributes);
		//console.log(swfobject, clockDiv)
	},
	installed:false
};
Event.onReady(function() {
	PopulationClock.run('clock');
});