$(document).ready(function(){
	window._BasePath=$("script[@src$=ViewNodeTree.js]").get(0).src.replace("ViewNodeTree.js","");
	$.get(window._BasePath+"ViewNodeTree.js.asp",function(data){ 
		$("#containerOBJ").html(data);
		$("body ul:first").Treeview({
			speed: "fast",
			collapsed: true,
			unique: false,
			toggle: function() {
				autoHeight();
			}
		});
		autoHeight();
		if ($.browser.msie) $("#containerOBJ").find("li a").css({position:"relative",left:"-13px"});
	});
});

