
/*
Tabs Menu (mouseover)- By Dynamic Drive
For full source code and more DHTML scripts, visit http://www.dynamicdrive.com
This credit MUST stay intact for use
*/

var submenu=new Array()


//Set submenu contents. Expand as needed. For each content, make sure everything exists on ONE LINE. Otherwise, there will be JS errors.
 

submenu[0]=' <a href="history.htm" class="TEXT1">History</a> | <a href="directors.htm" class="text1">Directors</a> | <a href="boardofadvisors.htm" class="TEXT1">Advisory Board</a> | <a href="missionandvision.htm" class="TEXT1">AIM </a> | <a href="mdspeak.htm" class="TEXT1">MD Speak</a> | <a href="researchandevelopment.htm" class="TEXT1">R & D</a> | <a href="qualitypolicy.htm" class="TEXT1">Quality Policy</a>'

submenu[1]='<a href="schoolexcel_intro.htm" class="TEXT1">School Excel</a> | <a href="collegeexcel_intro.htm" class="TEXT1">College Excel</a>'

submenu[2]='<a href="philosophy.htm" class="TEXT1">Philosophy</a> | <a href="escalationmatrix.htm" class="TEXT1">Escalation Matrix</a> | <a href="process.htm" class="TEXT1">Process</a> | <a href="feedbackform.htm" class="TEXT1">Feedback Form</a>'

submenu[3]='<a href="career_whybroadllyne.htm" class="TEXT1">Why Broadllyne?</a> | <a href="recruitmentprocess.htm" class="TEXT1">Recruitment Process</a> | <a href="currentopening.htm" class="TEXT1">Current Openings</a> | <a href="applicationform.htm" class="TEXT1">Application Form</a>'

submenu[4]='<a href="contactus.htm" class="text1"></a>'




//Set delay before submenu disappears after mouse moves out of it (in milliseconds)

var delay_hide=50000

/////No need to edit beyond here

var menuobj=document.getElementById? document.getElementById("describe") : document.all? document.all.describe : document.layers? document.dep1.document.dep2 : ""

function showit(which){
clear_delayhide()
thecontent=(which==-1)? "" : submenu[which]
if (document.getElementById||document.all)
menuobj.innerHTML=thecontent
else if (document.layers){
menuobj.document.write(thecontent)
menuobj.document.close()
}
}

function resetit(e){
if (document.all&&!menuobj.contains(e.toElement))
delayhide=setTimeout("showit(-1)",delay_hide)
else if (document.getElementById&&e.currentTarget!= e.relatedTarget&& !contains_ns6(e.currentTarget, e.relatedTarget))
delayhide=setTimeout("showit(-1)",delay_hide)
}

function clear_delayhide(){
if (window.delayhide)
clearTimeout(delayhide)
}

function contains_ns6(a, b) {
while (b.parentNode)
if ((b = b.parentNode) == a)
return true;
return false;
}