    Event.onDOMReady(domready_items);
    
    function domready_items(){
      if (Dom.get('asset_tree_init')){ // Create the category tree for asset mgmt.
        asset_treeInit();
      }
      if (Dom.get('task_list')){ // Create the task list.
		  try {
			  YAHOO.masi.cs.application.initialization();
		  }
		  catch(e) {
		  }
      }
      if (Dom.get('saved_docs_container')){ // Create the My Saved Documents area.
        display_load();
      }
      if (Dom.get('tree_init')){ // Create the category tree.
          treeInit();
          getNode();
      }
    }

