/**
 * Controller for site-wide event handlers, actions, etc.
 */
function Controller()
{
  //public properties


  //public methods
  /**
   * Initialize
   */
  this.init = function()
  {
    //global initialization

    //call any page-specific initalization
    try
    {
      this.pageInit();
    }
    catch(e)
    {

       // console.error(e);
    }
  };
}

