/***********************************************
* 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
***********************************************/
var image_names = '';
var image_ids = '';

//Contents for menu 1
var news=new Array()
news[0]='<a href="#">Blog</a>'

//Contents for menu 2, and so on
var whoweare=new Array()
whoweare[0]='<a href="who-started.php">How the program started</a>'
whoweare[1]='<a href="who-schools.php">How we choose schools</a>'
whoweare[2]='<a href="who-advisors.php">Our Advisors</a>'
whoweare[3]='<a href="who-contact.php">Contact Information</a>'

var whatwedo=new Array()
whatwedo[0]='<a href="what-sister_school.php">Sister School Program</a>'
whatwedo[1]='<a href="what-books.php">Books for Africa</a>'
whatwedo[2]='<a href="what-clean_water.php">Clean Water and Sanitation</a>'
whatwedo[3]='<a href="what-preservation.php">Environmental Preservation</a>'
whatwedo[4]='<a href="#">Eotourism</a>'

var howyoucanhelp=new Array()
howyoucanhelp[0]='<a href="how-involved.php">Get your school involved</a>'
howyoucanhelp[1]='<a href="how-contribution.php">Make a Contribution</a>'
howyoucanhelp[2]='<a href="#">Become a school sponsor</a>'
howyoucanhelp[3]='<a href="how-crafts.php">Purchase Crafts</a>'
howyoucanhelp[4]='<a href="how-difference.php">Find a way to make a difference</a>'

var zoomin=new Array()
zoomin[0]='<a href="zoom-galleries.php">Photo galleries of different school events</a>'
zoomin[1]='<a href="zoom-project.php">Photos of projects</a>'
zoomin[2]='<a href="#">Ecotour</a>'
zoomin[3]='<a href="zoom-workshop.php">Workshop</a>'
zoomin[4]='<a href="zoom-films.php">Short on-line films</a>'

var ourcommunity=new Array()
ourcommunity[0]='<a href="our-meet_kids.php">Meet the kids</a>'
ourcommunity[1]='<a href="our-meet_teachers.php">Meet the teachers</a>'
ourcommunity[2]='<a href="our-jump_in.php">Jump in</a>'

var resources=new Array()
resources[0]='<a href="resources-curriculum.php">School curriculum</a>'
resources[1]='<a href="resources-educational.php">Educational Resources</a>'
resources[2]='<a href="resources-partnerships.php">Partnerships</a>'


		
var menuwidth='400px' //default menu width
var menubgcolor='#3199cc'  //menu bgcolor
var disappeardelay=2500  //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+';background-color:'+menubgcolor+'" onMouseover="" 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 : totaloffset+parentEl.offsetTop;
parentEl=parentEl.offsetParent;
}
return totaloffset;
}


function showhide(obj, e, visible, hidden, menuwidth){
if (ie4||ns6)
dropmenuobj.style.left=dropmenuobj.style.top=-500
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, image_name, image_id){
image_names = image_name;
image_ids = image_id;
if (window.event) event.cancelBubble=true
else if (e.stopPropagation) e.stopPropagation()
clearhidemenu()
dropmenuobj=document.getElementById? document.getElementById("dropmenudiv") : dropmenudiv
populatemenu(menucontents)
/*dropmenuobj.onmouseover=MM_swapImage('Image4','','images/' + image_name + '.gif',1);*/
dropmenuobj.onmouseover=new Function ("clearhidemenu();");

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 blue_rollover(image_name){
	return MM_swapImage('Image4','','images/i-globalize02.gif',1);
}*/

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
