var ULMenu = '\
<ul class="MenuHorizontal Level1" id="nav">\
	<li>About Us\
		<ul class="MenuVertical Level2">\
			<li><a href="profile.html">Profile</a></li>\
			<li><a href="history.html">History</a></li>\
			<li><a href="careers.html">Careers</a></li>\
			<li><a href="contact.html">Contact Us</a></li>\
                                          <li><a href="press_releases.html">Press Releases</a></li>\
                                          <li><a href="mediacontact.html">Media Contact</a></li>\
		</ul>\
	</li>\
		<li>Technology Services\
		<ul class="MenuVertical Level2">\
                                       <li><a href="services_solutions_overview.html">Overview</a>\
                                       </li>\
                                       <li><a href="#">Practice Areas</a>\
				<ul class="MenuVertical Level3">\
					<li><a href="lims.html">Laboratory Information Management Systems</a></li>\
					<li><a href="lab_notebook.html">Electronic Lab Notebook</a></li>\
					<li><a href="edd.html">Electronic Data Deliverables</a></li>\
					<li><a href="remote.html">Remote/Field Data Capture Systems</a></li>\
					<li><a href="kms.html">Knowledge Management Systems</a></li>\
					<li><a href="cpms.html">Customer/Project Management Systems</a></li>\
					<li><a href="project_support.html">Project Support Services</a></li>\
					<li><a href="strategic_sourcing.html">Strategic Sourcing</a></li>\
					<li><a href="consultation_auditing.html">Regulatory Consultation and Auditing</a></li>\
				</ul>\
			</li>\
			<li><a href="#">Services</a>\
				<ul class="MenuVertical Level3">\
                                                                      <li><a href="services_overview.html">Overview</a></li>\
					<li><a href="business_case_development.html">Business Case Development</a></li>\
					<li><a href="project_management.html">Project Management</a></li>\
					<li><a href="requirements_collection.html">Requirements Collection and Analysis</a></li>\
					<li><a href="vendor_qualification.html">Vendor Qualification</a></li>\
					<li><a href="spec_rfp_dev.html">Specification and RFP Development</a></li>\
					<li><a href="vendor_evaluation.html">Vendor Evaluation and Selection</a></li>\
					<li><a href="custom_development.html">Custom Development</a></li>\
					<li><a href="gap_analysis.html">Functionality and Gap Analysis</a></li>\
					<li><a href="implementation.html">Implementation</a></li>\
					<li><a href="customization.html">Customization and Configuration</a></li>\
					<li><a href="legacy_data_migration.html">Legacy Data Migration</a></li>\
					<li><a href="testing_validation_assistance.html">Testing and Valuation Assistance</a></li>\
					<li><a href="integration_deployment.html">Integration and Deployment</a></li>\
					<li><a href="training.html">Training</a></li>\
				</ul>\
			</li>\
		</ul>\
	</li>\
                            <li>Staffing Services\
		<ul class="MenuVertical Level2">\
			<li><a href="staffing_overview.html">Overview</a></li>\
			<li><a href="staffing_services.html">Services</a></li>\
		</ul>\
		<li>Clients\
		<ul class="MenuVertical Level2">\
			<li><a href="client_list.html">Client List</a></li>\
                                          <li><a href="#">Project Summaries</a></li>\
                                                            <ul class="MenuVertical Level3">\
					<li><a href="lims_psums.html">Laboratory Information Management Systems</a></li>\
					<li><a href="lab_notebook_psums.html">Electronic Lab Notebook</a></li>\
					<li><a href="edd_psums.html">Electronic Data Deliverables</a></li>\
					<li><a href="remote_psums.html">Remote/Field Data Capture Systems</a></li>\
					<li><a href="kms_psums.html">Knowledge Management Systems</a></li>\
					<li><a href="cpms_psums.html">Customer/Project Management Systems</a></li>\
					<li><a href="project_support_psums.html">Project Support Services</a></li>\
					<li><a href="strategic_sourcing_psums.html">Strategic Sourcing</a></li>\
					<li><a href="consultation_auditing_psums.html">Regulatory Consultation and Auditing</a></li>\
				</ul>\
		</ul>\
	</li>\
	</li>\
		<li>Industries\
		<ul class="MenuVertical Level2">\
			<li><a href="chemical.html">Chemical</a></li>\
			<li><a href="environmental.html">Environmental</a></li>\
			<li><a href="pharmaceutical.html">Pharmaceutical</a></li>\
			<li><a href="water.html">Water/Wastewater Utilities</a></li>\
			<li><a href="governmental.html">Governmental</a></li>\
		</ul>\
	</li>\
		 <li>Resources\
		<ul class="MenuVertical Level2">\
			<li><a href="presentations.html">Presentations</a></li>\
			<li><a href="links.html">Links</a></li>\
		</ul>\
	</li>\
</ul>\
'

// -------------
startList = function()
  {
  var node = document.getElementById("nav");
  AssignMenuEvents(node) ;
  }

function AssignMenuEvents(pObject)
  {
  var node ;
  var vPreviousIndex ;
  
  for (i=0; i < pObject.childNodes.length; i++)
    {
    node = pObject.childNodes[i];

    if (node.tagName == "LI")
      {
      if (document.all && document.getElementById)
        {
        var divContent = document.getElementById("content");
        if (divContent) 
        {
			divContent.style.zIndex = -10;
		}
        node.onmouseover=function()
                           {
 							var ifrm = document.getElementById("DivShim");
							if (ifrm) ifrm.style.visibility = "visible";
							//alert(ifrm.style.visibility)
                          if (this.className != "Seperator") // Added by N
								this.className+=" over";
							//if (divContent) divContent.style.visibility = "hidden";
							//alert([this.tagName, this.innerHTML, this.className,this.width,this.style.visibility,this.style.position,this.top,this.style.left,this.style.width,this.style.height]);
                           }

        node.onmouseout=function()
                           {
                           this.className=this.className.replace(" over", "");
							if (divContent) 
							divContent.style.visibility = "visible";
                           }
        node.onclick   = MenuClickHandlerIE;
        }
      else
        {
      node.addEventListener("click", MenuClickHandlerMoz, false);
        }
      }

    if (node.childNodes.length > 0)
      {
      vPreviousIndex = i ;
      AssignMenuEvents(node);
      i = vPreviousIndex ;
      }
    }
  }

function MenuClickHandlerIE()
  {
  var node ;
  var vFoundAction = false ;
  pNode = event.srcElement ;
  
  for (i=0; i < pNode.childNodes.length; i++)
    {
    node = pNode.childNodes[i];

    if (node.tagName == "A")
      {
      vFoundAction = true ;
      
      if (node.click)
        {
        node.click();
        }
      else
        {
        window.location.replace(node.href);
        }
      }
    if (vFoundAction)
      {
      break ;
      }
    }
  event.cancelBubble  = true ;
  }


function MenuClickHandlerMoz(e)
  {
  var node ;
  var vFoundAction = false ;
  pNode = e.target  ;
  
  for (i=0; i < pNode.childNodes.length; i++)
    {
    node = pNode.childNodes[i];

    if (node.tagName == "A")
      {
      vFoundAction = true ;
      
      if (node.onclick)
        {
        node.onclick();
        }
      else
        {
        window.location.replace(node.href);
        }
      }
    if (vFoundAction)
      {
      break ;
      }
    }
  e.cancelBubble  = true ;
  }

window.onload=startList;
