Site.Pages.Feature = Class.create
(
    Site.Page,
    {
        initialize: function($super)
        {
            $super();
            
            //this.addObservers("dropdownOnClick", "hideAllOptions");
           
        },
        
        domOnLoad: function($super, event)
        {
            $super(event);
            
            
            if($('feature-type-anchor')){ 
                this.typeDropDown = new Site.Widgets.DropDown( $('feature-type-anchor'),  $('feature-type-anchor-ul'), {hideDelay: 1000});
            }
            if($('feature-category-anchor')){ 
                this.categoryDropDown = new Site.Widgets.DropDown( $('feature-category-anchor'),  $('feature-category-anchor-ul'), {hideDelay: 1500});
            }  
            
            
            if ($('categories-menu'))
            {
                this.categoriesDropDown = new Site.Widgets.DropDown( $('navigation-browse-categories'),  $('categories-menu'), {hideDelay: 1500});
           }      

        },
        
        windowOnLoad: function($super, event)
        {
            $super(event);    
            
            
                  
        },
        
        
        
        destroy: function($super)
        {
            
            $super();
        }
                
    }
);