/*
*	modello框架
**
*	author 贺博
*	version 2007-7-5
**
*	时间戳
*/
TimeManager = Class.create();
TimeManager.register("com.duxiu.js.TimeManager");

TimeManager.construct = function($self, $class){	

	var timestamps;
	
	this.initialize = function(){
		timestamps = new Date().getTime();
	}
	
	this.reflashTimestamps = function(){	
		timestamps = new Date().getTime();
	}
	
	this.getIimestamps = function(){		
		return timestamps;
	}
	
	this.toUrlTimestamps = function(){
		return "&t="+timestamps;
	}
}
