// 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/company_snapshot.html">Company Snapshot</a>'
aboutus[1]='<a href="http://www.marlabs.com/ourperform_diff.html">Our Performance and Differentiation</a>'
aboutus[2]='<a href="http://www.marlabs.com/missionvision.html">Mission and Vision</a>'
aboutus[3]='<a href="http://www.marlabs.com/quality.html">Quality Systems</a>'
aboutus[4]='<a href="http://www.marlabs.com/awards.html">Awards and Recognition</a>'
aboutus[5]='<a href="http://www.marlabs.com/customers.html">Our Customers</a>'
aboutus[6]='<a href="http://www.marlabs.com/globaldelivery.html">Global Delivery Model</a>'
aboutus[7]='<a href="http://www.marlabs.com/ourinfrastructure.html">Our Infrastructure</a>'
aboutus[8]='<a href="http://www.marlabs.com/globaloffices.html">Global Offices</a>'


//Contents for Services menu
var serv=new Array()
serv[0]='<a href="http://www.marlabs.com/adm.html">Application Development and Maintenance</a>'
serv[1]='<a href="http://www.marlabs.com/bidw.html">Business Intelligence and Data Warehousing</a>'
serv[2]='<a href="http://www.marlabs.com/ivv.html">Independent Verification and Validation</a>'
serv[3]='<a href="http://www.marlabs.com/bpo.html">Business Process Outsourcing</a>'
serv[4]='<a href="http://www.marlabs.com/erp.html">Enterprise Resource Planning</a>'
serv[5]='<a href="http://www.marlabs.com/consulting_services.html">Consulting Services	</a>'

//Contents for Products menu
var prod=new Array()
prod[0]='<a href="http://www.marlabs.com/mcocentral.html">MCO Central<sup>TM</sup></a>'

//Contents for Industries menu
var ind=new Array()
ind[0]='<a href="http://www.marlabs.com/healthcare.html">Healthcare</a>'
ind[1]='<a href="http://www.marlabs.com/lifesciences.html">Life Sciences</a>'
ind[2]='<a href="http://www.marlabs.com/bfsi.html">Banking, Financial Services and Insurance</a>'
ind[3]='<a href="http://www.marlabs.com/legal.html">Legal</a>'
ind[4]='<a href="http://www.marlabs.com/airlineservices.html">Airline Services</a>'
ind[5]='<a href="http://www.marlabs.com/energy.html">Energy and Utilities</a>'

//Contents for Careers menu
var carr=new Array()
carr[0]='<a href="http://www.marlabs.com/benefits.html" class="small">Benefits</a>'
carr[1]='<a href="http://www.marlabs.com/current_openings.php" class="small">Current Openings</a>'
carr[2]='<a href="http://www.marlabs.com/apply_now.html" class="small">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 menuBack(e)
{
	//alert('kkr');
//	e.background='';
	e.style.backgroundColor="black";
//	e.style.background="/images/searchbg.gif";
}

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
