<!--
document.UM = new Object();
document.UM.menu = new Object();
document.UM.menu.dropdown = new Array();

function UM_initializeToolbar(){
    var i;
    if (document.all){
	for(i = 0; i < document.all('container').all.length; i++){
	    if ((document.all('container').all[i].className == 'menuHeader') || (document.all('container').all[i].className == 'menuLinks')){
			document.UM.menu.dropdown[document.UM.menu.dropdown.length] = document.all('container').all[i];
	    }
	}
    } else if (document.getElementsByTagName && document.getElementById){
	var contained = document.getElementById('container').getElementsByTagName('div');
	for(i = 0; i < contained.length; i++){
	    if ((contained[i].getAttribute('class') == 'menuHeader') || (contained[i].getAttribute('class') == 'menuLinks')){
			document.UM.menu.dropdown[document.UM.menu.dropdown.length] = contained[i];
	    }
	}
    }
}

function UM_collapse(item){
    if(document.UM.menu.dropdown.length){
		if (document.UM.menu.dropdown[item + 1].style.display == 'none'){
			document.UM.menu.dropdown[item + 1].style.display = '';
			//document.images[document.UM.menu.dropdown[item].id + 'Img'].src = 'images/open.gif';
		} else {
			document.UM.menu.dropdown[item + 1].style.display = 'none';
			//document.images[document.UM.menu.dropdown[item].id + 'Img'].src = 'images/closed.gif';
		}
    }
}  
// -->