
/*
 * Generic Tour JS object.
 *
 * Use this to implement any tour-only javascript methods that would otherwise be
 * global functions.
 */
 var Tour = new Class({

	initialize: function(options) {
		this.options = options;
	}

});
