// JavaScript Document
/***********************************************
* AnyLink Drop Down Menu- © Dynamic Drive (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit http://www.dynamicdrive.com/ for full source code
***********************************************/

//Contents for About Us menu
var aboutus=new Array()
aboutus[0]='<a href="http://www.marlabs.com/about/company-snapshot.html">Company Snapshot</a>'
aboutus[1]='<a href="http://www.marlabs.com/about/performance-and-differentiation.html">Our Performance and Differentiation</a>'
aboutus[2]='<a href="http://www.marlabs.com/about/mission-and-vision.html">Mission and Vision</a>'
aboutus[3]='<a href="http://www.marlabs.com/about/quality-systems.html">Quality Systems</a>'
aboutus[4]='<a href="http://www.marlabs.com/about/awards-and-recognition.html">Awards and Recognition</a>'
aboutus[5]='<a href="http://www.marlabs.com/about/customers.html">Our Customers</a>'
aboutus[6]='<a href="http://www.marlabs.com/about/global-delivery-model.html">Global Delivery Model</a>'
aboutus[7]='<a href="http://www.marlabs.com/about/our-infrastructure.html">Our Infrastructure</a>'
aboutus[8]='<a href="http://www.marlabs.com/about/global-offices.html">Global Offices</a>'


//Contents for Services menu
var serv=new Array()
serv[0]='<a href="http://www.marlabs.com/services/application-development-and-maintenance.html">Application Development and Maintenance</a>'
serv[1]='<a href="http://www.marlabs.com/services/web-application-security.html">Web Application Security</a>'
serv[2]='<a href="http://www.marlabs.com/services/business-intelligence-and-data-warehousing.html">Business Intelligence and Data Warehousing</a>'
serv[3]='<a href="http://www.marlabs.com/services/independent-verification-and-validation.html">Independent Verification and Validation</a>'
serv[4]='<a href="http://www.marlabs.com/services/business-process-outsourcing.html">Business Process Outsourcing</a>'
serv[5]='<a href="http://www.marlabs.com/services/enterprise-resource-planning.html">Enterprise Resource Planning</a>'
serv[6]='<a href="http://www.marlabs.com/services/managed-services.html">Managed Services</a>'
serv[7]='<a href="http://www.marlabs.com/services/consulting-services.html">Consulting Services	</a>'

//Contents for Products menu
var prod=new Array()
prod[0]='<a href="http://www.marlabs.com/products/mco-central.html">MCO Central<sup>TM</sup></a>'

//Contents for Industries menu
var ind=new Array()
ind[0]='<a href="http://www.marlabs.com/industries/healthcare.html">Healthcare</a>'
ind[1]='<a href="http://www.marlabs.com/industries/life-sciences.html">Life Sciences</a>'
ind[2]='<a href="http://www.marlabs.com/industries/banking-finance-insurance.html">Banking, Financial Services and Insurance</a>'
ind[3]='<a href="http://www.marlabs.com/industries/legal.html">Legal</a>'
ind[4]='<a href="http://www.marlabs.com/industries/airline-services.html">Airline Services</a>'
ind[5]='<a href="http://www.marlabs.com/industries/energy-and-utilities.html">Energy and Utilities</a>'
ind[6]='<a href="http://www.marlabs.com/industries/state-and-local-government.html">State and Local Government</a>'
ind[7]='<a href="http://www.marlabs.com/industries/education.html">Education</a>'

//Contents for Careers menu
var carr=new Array()
carr[0]='<a href="http://www.marlabs.com/careers/career-benefits.html">Benefits</a>'
carr[1]='<a href="http://www.marlabs.com/careers/current_openings.php">Current Openings</a>'
carr[2]='<a href="http://www.marlabs.com/careers/workplace-diversity.html">Diversity</a>'
//carr[2]='<a href="lca.php">LCA</a>'
carr[3]='<a href="http://www.marlabs.com/careers/apply-now.html">Apply Now</a>';

var menuwidth='165px' //default menu width
var menubgcolor='#cccccc'  //menu bgcolor
var txtcolor = 'white'  //menu text color
var disappeardelay=250  //menu disappear speed onMouseout (in miliseconds)
var hidemenu_onclick="yes" //hide menu when user clicks within menu?

/////No further editting needed

var ie4=document.all
var ns6=document.getElementById&&!document.all

if (ie4||ns6)
document.write('<div id="dropmenudiv" style="visibility:hidden;width:'+menuwidth+';color:'+txtcolor+';background-color:'+menubgcolor+'" onMouseover="clearhidemenu()" onMouseout="dynamichide(event)"></div>')

function getposOffset(what,offsettype){
var totaloffset=(offsettype=="left")? what.offsetLeft : what.offsetTop;
var parentEl=what.offsetParent;
while (parentEl!=null){
totaloffset=(offsettype=="left")? totaloffset+parentEl.offsetLeft-2.5 : totaloffset+parentEl.offsetTop+0.90;
parentEl=parentEl.offsetParent;
}
return totaloffset;
}


function showhide(obj, e, visible, hidden, menuwidth){
if (ie4||ns6)
dropmenuobj.style.left=dropmenuobj.style.top="-500px"
if (menuwidth!=""){
dropmenuobj.widthobj=dropmenuobj.style
dropmenuobj.widthobj.width=menuwidth
}
if (e.type=="click" && obj.visibility==hidden || e.type=="mouseover")
obj.visibility=visible
else if (e.type=="click")
obj.visibility=hidden
}

function iecompattest(){
return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
}

function clearbrowseredge(obj, whichedge){
var edgeoffset=0
if (whichedge=="rightedge"){
var windowedge=ie4 && !window.opera? iecompattest().scrollLeft+iecompattest().clientWidth-15 : window.pageXOffset+window.innerWidth-15
dropmenuobj.contentmeasure=dropmenuobj.offsetWidth
if (windowedge-dropmenuobj.x < dropmenuobj.contentmeasure)
edgeoffset=dropmenuobj.contentmeasure-obj.offsetWidth
}
else{
var topedge=ie4 && !window.opera? iecompattest().scrollTop : window.pageYOffset
var windowedge=ie4 && !window.opera? iecompattest().scrollTop+iecompattest().clientHeight-15 : window.pageYOffset+window.innerHeight-18
dropmenuobj.contentmeasure=dropmenuobj.offsetHeight
if (windowedge-dropmenuobj.y < dropmenuobj.contentmeasure){ //move up?
edgeoffset=dropmenuobj.contentmeasure+obj.offsetHeight
if ((dropmenuobj.y-topedge)<dropmenuobj.contentmeasure) //up no good either?
edgeoffset=dropmenuobj.y+obj.offsetHeight-topedge
}
}
return edgeoffset
}

function populatemenu(what){
if (ie4||ns6)
dropmenuobj.innerHTML=what.join("")
}


function dropdownmenu(obj, e, menucontents, menuwidth){
if (window.event) event.cancelBubble=true
else if (e.stopPropagation) e.stopPropagation()
clearhidemenu()
dropmenuobj=document.getElementById? document.getElementById("dropmenudiv") : dropmenudiv
populatemenu(menucontents)

if (ie4||ns6){
showhide(dropmenuobj.style, e, "visible", "hidden", menuwidth)

dropmenuobj.x=getposOffset(obj, "left")
dropmenuobj.y=getposOffset(obj, "top")
dropmenuobj.style.left=dropmenuobj.x-clearbrowseredge(obj, "rightedge")+"px"
dropmenuobj.style.top=dropmenuobj.y-clearbrowseredge(obj, "bottomedge")+obj.offsetHeight+"px"
}

return clickreturnvalue()
}

function clickreturnvalue(){
if (ie4||ns6) return false
else return true
}

function contains_ns6(a, b) {
while (b.parentNode)
if ((b = b.parentNode) == a)
return true;
return false;
}

function dynamichide(e){
if (ie4&&!dropmenuobj.contains(e.toElement))
delayhidemenu()
else if (ns6&&e.currentTarget!= e.relatedTarget&& !contains_ns6(e.currentTarget, e.relatedTarget))
delayhidemenu()
}

function hidemenu(e){
if (typeof dropmenuobj!="undefined"){
if (ie4||ns6)
dropmenuobj.style.visibility="hidden"
}
}

function delayhidemenu(){
if (ie4||ns6)
delayhide=setTimeout("hidemenu()",disappeardelay)
}

function clearhidemenu(){
if (typeof delayhide!="undefined")
clearTimeout(delayhide)
}

if (hidemenu_onclick=="yes")
document.onclick=hidemenu
