function clickMenu(menuId, node, parent){
	node = document.getElementById(node);

  var browserName=navigator.appName; 
	temp=navigator.appVersion.split('MSIE');
	// Parse the string for the "6" in 6.0
	ieVer=parseInt(temp[1]);
	var version=parseInt(navigator.appVersion);

	node.parentNode.style.right = '0px';
	var children = node.getElementsByTagName('UL');

	if (browserName == "Microsoft Internet Explorer" && ieVer == 6) {
  	if (children[0] != null) {
      children[0].style.display = 'inline';
      children[0].style.left = '182px';
    }
    else {
      node.parentNode.parentNode.parentNode.style.right = '0px';
      node.parentNode.style.display = 'inline';
      node.parentNode.style.left = '182px';
    }
  }
  else {
	  if (children[0] != null) {
      children[0].style.display = 'inline';
      children[0].style.left = '200px';
    }
    else {
      node.parentNode.parentNode.parentNode.style.right = '0px';
      node.parentNode.style.display = 'inline';
      node.parentNode.style.left = '200px';
    }    
  }
}
