﻿function Sites_Bar_Pages_Home_Home(id)
{
    this.Inherits(Reflective.Web.UI.Page, id, "Sites_Bar_Pages_Home_Home");    
    
    this._selectedInfo = null;
}

Core.setInheritance(Sites_Bar_Pages_Home_Home, 
    Reflective.Web.UI.Page);

Core.extend(Sites_Bar_Pages_Home_Home,
    {
        OnInit : function()
        {
            //DomHelper.AttachEventString(document.body, "onmouseover", this.id + "._showDefaultSummary");            
        }
    }
);