// JavaScript Document
 

var submenu=new Array()
submenu[0]='<font size="2" face="Verdana"><b><a href="Parentbody.html">MAEER’S [ Parent Body]</a> | <a href="Institutions.html">Our Institutions </a> | <a href="Opinion.html">In my Opinion</a> | <a href="TBA.html">Thought Behind the Award</a> | <a href="Award_cat.html">Award Category</a>'// |  <a href="pages/aboutus/Songdance.html">Song & Dance Award</a></b></font>'

submenu[1]='<font size="2" face="Verdana"><b><a href="Awards.html">The Awards</a> | <a href="Committee.html">Committee Members</a> | <a href="obj_awards.html">Code of Procedure</a></b></font>'

submenu[2]='<font size="2" face="Verdana"><b> <a href="#">Year 2008-09</a> | <a href="pressnote_08.html">Year 2007-08</a> | <a href="pressnote_07.html">Year 2006-07</a> | <a href="pressnote_06.html">Year 2005-06 </a>'// | <a href="pressnote_05.html">Year 2004-05</a></b></font>'

submenu[3]='<font size="2" face="Verdana"><b>  <a href="media09.html">Year 2008-09</a> | <a href="media08.html">Year 2007-08</a> | <a href="media07.html">Year 2006-07</a> | <a href="media06.html">Year 2005-06 </a>'

// | <a href="Pages/media/yrs0405.html">Year 2004-05</a></b></font>'
//Set delay before submenu disappears after mouse moves out of it (in milliseconds)
var delay_hide=500

/////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;
}
      
