// JavaScript Document
			jQuery(function(){
			jQuery('ul.sf-menu').superfish({
					delay:         500,                // the delay in milliseconds that the mouse can remain outside a submenu without it closing 	
 					animation:     {opacity:'show',height:'show'},   // an object equivalent to first parameter of jQueryís .animate() method 					
	 				dropShadows:   true,               // completely disable drop shadows by setting this to false 	
					autoArrows:    false,               // if true, arrow mark-up generated automatically = cleaner source code at expense of initialisation performance 
					speed:         'fast'           // speed of the animation. Equivalent to second parameter of jQueryís .animate() method 
					});
		});

$(window).load(function(){
   $("#nw-map").treeview({
		animated: "fast",
		collapsed: false,
		unique: false,
		control: "#treecontrol"
		}); 
});			
		