
(function() {
var tree;
function treeInit() {
	tree = new YAHOO.widget.TreeView("nav_content");
	var root = tree.getRoot();            
	
	
        var dataObjWS5b3ccc516d4fbf351e63e3d11a0d6624347ff6html = 
        { label: "Developing Plug-ins",
        href:"WS5b3ccc516d4fbf351e63e3d11a0d662434-7ff6.html",
        target:"_self"};
        var WS5b3ccc516d4fbf351e63e3d11a0d6624347ff6html = 
        new YAHOO.widget.TextNode(dataObjWS5b3ccc516d4fbf351e63e3d11a0d6624347ff6html, 
        root, false);
        
        var dataObjWSEE892D00F8E04e1dB891C6A540A5C966html = 
        { label: "Versioning and upgrading",
        href:"WSEE892D00-F8E0-4e1d-B891-C6A540A5C966.html",
        target:"_self"};
        var WSEE892D00F8E04e1dB891C6A540A5C966html = 
        new YAHOO.widget.TextNode(dataObjWSEE892D00F8E04e1dB891C6A540A5C966html, 
        WS5b3ccc516d4fbf351e63e3d11a0d6624347ff6html, false);
        
        var dataObjWS5b3ccc516d4fbf351e63e3d11a0d6624347ff5html = 
        { label: "Working with plug-ins",
        href:"WS5b3ccc516d4fbf351e63e3d11a0d662434-7ff5.html",
        target:"_self"};
        var WS5b3ccc516d4fbf351e63e3d11a0d6624347ff5html = 
        new YAHOO.widget.TextNode(dataObjWS5b3ccc516d4fbf351e63e3d11a0d6624347ff5html, 
        WS5b3ccc516d4fbf351e63e3d11a0d6624347ff6html, false);
        
        var dataObjWS5b3ccc516d4fbf351e63e3d11a0d6624347ff7html = 
        { label: "General development tasks",
        href:"WS5b3ccc516d4fbf351e63e3d11a0d662434-7ff7.html",
        target:"_self"};
        var WS5b3ccc516d4fbf351e63e3d11a0d6624347ff7html = 
        new YAHOO.widget.TextNode(dataObjWS5b3ccc516d4fbf351e63e3d11a0d6624347ff7html, 
        WS5b3ccc516d4fbf351e63e3d11a0d6624347ff6html, false);
        
        var dataObjWS5b3ccc516d4fbf351e63e3d11a0d6624347fedhtml = 
        { label: "Developing an Access plug-in",
        href:"WS5b3ccc516d4fbf351e63e3d11a0d662434-7fed.html",
        target:"_self"};
        var WS5b3ccc516d4fbf351e63e3d11a0d6624347fedhtml = 
        new YAHOO.widget.TextNode(dataObjWS5b3ccc516d4fbf351e63e3d11a0d6624347fedhtml, 
        WS5b3ccc516d4fbf351e63e3d11a0d6624347ff6html, false);
        
        var dataObjWS5b3ccc516d4fbf351e63e3d11a0d6624347fe8html = 
        { label: "Developing an Authorization plug-in",
        href:"WS5b3ccc516d4fbf351e63e3d11a0d662434-7fe8.html",
        target:"_self"};
        var WS5b3ccc516d4fbf351e63e3d11a0d6624347fe8html = 
        new YAHOO.widget.TextNode(dataObjWS5b3ccc516d4fbf351e63e3d11a0d6624347fe8html, 
        WS5b3ccc516d4fbf351e63e3d11a0d6624347ff6html, false);
        
        var dataObjWS5b3ccc516d4fbf351e63e3d11a0d6624347fe4html = 
        { label: "Developing a File plug-in",
        href:"WS5b3ccc516d4fbf351e63e3d11a0d662434-7fe4.html",
        target:"_self"};
        var WS5b3ccc516d4fbf351e63e3d11a0d6624347fe4html = 
        new YAHOO.widget.TextNode(dataObjWS5b3ccc516d4fbf351e63e3d11a0d6624347fe4html, 
        WS5b3ccc516d4fbf351e63e3d11a0d6624347ff6html, false);
        
        var dataObjWS5b3ccc516d4fbf351e63e3d11a0d6621088000html = 
        { label: "Legal notices",
        href:"WS5b3ccc516d4fbf351e63e3d11a0d662108-8000.html",
        target:"_self"};
        var WS5b3ccc516d4fbf351e63e3d11a0d6621088000html = 
        new YAHOO.widget.TextNode(dataObjWS5b3ccc516d4fbf351e63e3d11a0d6621088000html, 
        root, false);
        
        var dataObjWS5b3ccc516d4fbf351e63e3d11a0d6621087fffhtml = 
        { label: "Copyright",
        href:"WS5b3ccc516d4fbf351e63e3d11a0d662108-7fff.html",
        target:"_self"};
        var WS5b3ccc516d4fbf351e63e3d11a0d6621087fffhtml = 
        new YAHOO.widget.TextNode(dataObjWS5b3ccc516d4fbf351e63e3d11a0d6621087fffhtml, 
        WS5b3ccc516d4fbf351e63e3d11a0d6621088000html, false);
        
	
	if (YAHOO.widget.TreeView.nodeCount > 2) {
        updateTOCClass();
		tree.draw();
		if ( typeof(currentTreeNode) != 'undefined' ) {
			syncTocUsingHref(currentTreeNode);
		}
	}
	else {
		hideElement("search");
		hideElement("col1");
	}
}

function syncTocUsingHref(currentHref) {
  currentNode = tree.getNodeByProperty("href", currentHref)
  if ((currentNode) && (!currentNode.isRoot())) {
	syncTocUsingNode(currentNode.parent);
  }
}

function syncTocUsingNode(currentNode) {
  if ((currentNode) && (!currentNode.isRoot())) {
	syncTocUsingNode(currentNode.parent);
	currentNode.expand();
  }
}
YAHOO.util.Event.onDOMReady(treeInit);
})();
