// menu arbol 4

d= new dTree('d');
d.config.folderLinks=false;
d.config.useIcons=false;
d.config.useStatusText=true;
d.config.closeSameLevel=true;
d.config.useCookies=true;
d.add(0,-1,'Punto de encuentro','javascript: void(0);');
d.add(1, 0,'Entrevistas','http://www.fundaciondiabetes.org/diabetesinfantil/entrevistas/index.htm');
d.add(2, 0,'Cartas','http://www.fundaciondiabetes.org/diabetesinfantil/cartas/index.asp');
d.add(3, 0,'Foros','http://www.fundaciondiabetes.org/diabetesinfantil/foros/index.asp');
d.add(4, 0,'Encuestas','http://www.fundaciondiabetes.org/diabetesinfantil/encuestas/historial.asp');
d.add(5, 0,'Colabora','http://www.fundaciondiabetes.org/diabetesinfantil/colabora/index.htm');
d.add(6, 0,'Enlaces de inter&eacute;s','http://www.fundaciondiabetes.org/diabetesinfantil/enlaces_interes/index.htm');

d.closeAll();
document.write(d);

document.write('<style>');
document.write('.dtree {');
document.write('font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;');
document.write('font-size: 0.9 em;');
document.write('color: #555555;');
document.write('white-space: nowrap;');
document.write('}');
document.write('.dtree img {');
document.write('border: 0px;');
document.write('vertical-align: middle;');
document.write('}');
document.write('.dtree a {');
document.write('color: #555555;');
document.write('text-decoration: none;');
document.write('}');
document.write('.dtree a.node, .dtree a.nodeSel {');
document.write('white-space: nowrap;');
document.write('padding: 1px 2px 1px 2px;');
document.write('}');
document.write('.dtree a.node:hover, .dtree a.nodeSel:hover {');
document.write('color: #ffffff;');
document.write('text-decoration: underline;');
document.write('background-color: #fba7cd;');
document.write('}');
document.write('.dtree a.nodeSel {');
document.write('background-color: #fc2c8a;');
document.write('}');
document.write('.dtree .clip {');
document.write('overflow: hidden;');
document.write('}');
document.write('</style>');


	/*
target  	String  	true  	Target for all the nodes.
folderLinks 	Boolean 	true 	Should folders be links.
useSelection 	Boolean 	true 	Nodes can be selected(highlighted).
useCookies 	Boolean 	true 	The tree uses cookies to rember it's state.
useLines 	Boolean 	true 	Tree is drawn with lines.
useIcons 	Boolean 	true 	Tree is drawn with icons.
useStatusText 	Boolean 	false 	Displays node names in the statusbar instead of the url.
closeSameLevel 	Boolean 	false 	Only one node within a parent can be expanded at the same time. openAll() and closeAll() functions do not work when this is enabled.
inOrder 	Boolean 	false 	If parent nodes are always added before children, setting this to true speeds up the tree.
	*/// JavaScript Document
