var Utility = Class.create();

Utility.prototype = {
  initialize: function() {
  },

  getSiteRoot: function() {
    return (window.location.protocol + '//' + window.location.host + '/');
  }
};

utility = new Utility();

