
Namespace.register('aegoncz.funds');

/* Fund Class
------------------------------------------------------------*/
aegoncz.funds.Fund = new Class({
	
	id:null,
	ratio:null,
	data:null,
	offset:null,
	average:false,
	
	initialize:function(id) {
		
		this.id = id;
		
	},
	
	setOffset:function(offset) {
		
		// format offset
		var t = new Date(offset);
			t.clearTime();
			t.set('hr',12);
		
		this.offset = t.getTime();
	}
});

