/*
 * This class allows us to instantiate a private-static
 * time from an erb file which can then be accessed globally
 * using the public-static accessor ServerTime.now()
 */
var ServerTime = function( millis_from_epoch )
{
  // private static vars
  var time = new Date();
  time.setTime( millis_from_epoch );
  
  // public static accessors
  ServerTime.now = function(){return time;};
};
