// Generatrix
var Generatrix = {

	basepath: '/',

	href: function(path) {
		return this.basepath + path;
	},

	timestamp: function() {
		var d = new Date();
		return d.getTime() / 1000;
	},

	getRandom: function(max) {
		return Math.ceil(Math.random() * max);
	}
};
