function TreeView(id) {
	if (!document.getElementById || !document.getElementsByTagName)
		return false;	
	if ((id=='undefined')||(id=='')) {id='my_menu';}
	if (document.getElementById(id)!=null) {
	this.id = id;
	this.menu = document.getElementById(this.id);
	this.submenus = this.menu.getElementsByTagName("div");
	this.remember = true;
	this.speed = 2;
	this.markCurrent = true;
	this.oneSmOnly = false;}
}
TreeView.prototype.init = function() {
	if (this.markCurrent) {
		var links = this.menu.getElementsByTagName("a");
		for (var i = 0; i < links.length; i++)
			if (links[i].href == document.location.href) {
				links[i].className = "current";
				break;
			}
	}
};


var myMenu;

windowonload(function () {TopMenu = new TreeView("menu"); TopMenu.init();});



// ]]>

