//Modificar varias lineaa para ftepear
//

//var GB_ROOT_DIR = "http://10.226.19.247/greybox/";
var GB_ROOT_DIR = "http://voluntarios.fundaciontelefonica.org.pe/greybox/";

var menu1=new Array() //qué es el programa
menu1[0]='<a href="/programa.asp" title="Objetivos">Objetivos</a>'
menu1[1]='<a href="/principios.asp" title="Principios">Principios</a>'

var menu2=new Array() //Ofertas para voluntarios
menu2[0]='<a href="/ofertaspordpto.asp?lugar=LIM" title="LIMA">LIMA</a>'
menu2[1]='<a href="/ofertaspordpto.asp" title="ZONALES">ZONALES</a>'

var menu3=new Array() //Actividades realizadas
menu3[0]='<a href="/sprensa.asp" title="Sala de prensa">Sala de prensa</a>'
menu3[1]='<a href="/testimonios.asp" title="Testimonios">Testimonios</a>'
menu3[2]='<a href="/galeria.asp" title="Galer&iacute;a de fotos">Galer&iacute;a de fotos</a>'
menu3[3]='<a href="/gal_videos.asp" title="Galer&iacute;a de videos">Galer&iacute;a de videos</a>'
menu3[4]='<a href="/ninfo.asp" title="Notas informativas">Notas informativas</a>'
menu3[5]='<a href="/blogs.asp" title="Blogs Voluntarios Telef&oacute;nica">Blogs Voluntarios Telef&oacute;nica</a>'


var menu4=new Array() //Actividades realizadas
menu4[0]='<a href="/concursoMB2010.asp" title="Concurso 2010">Concurso 2010</a>'
menu4[1]='<a href="/concursoMB2009.asp" title="Concurso 2009">Concurso 2009</a>'
menu4[2]='<a href="/concurso.asp" title="Concurso 2008">Concurso 2008</a>'

var menu5=new Array() //Actividades realizadas
menu5[0]='<a href="/comite_lima.asp" title="Comit&eacute; Lima">Comit&eacute; Lima</a>'
menu5[1]='<a href="/comite_regional.asp" title="Comit&eacute;s Zonales">Comit&eacute;s Zonales</a>'


		
var menuwidth='150px' //default menu width
var menubgcolor='lightyellow'  //menu bgcolor
var disappeardelay=250  //menu disappear speed onMouseout (in miliseconds)
var hidemenu_onclick="yes" //hide menu when user clicks within menu?
var menuname="dropmenudiv"

var ie4=document.all
var ns6=document.getElementById && !document.all
selectLists = document.getElementsByTagName('select');
if (ie4||ns6)
//document.write('<div id="dropmenudiv" style="visibility:hidden;width:'+menuwidth+';background-color:'+menubgcolor+'" onMouseover="clearhidemenu()" onMouseout="dynamichide(event)"></div>')
document.write('<div id="dropmenudiv" style="visibility:hidden;width:'+menuwidth+'" 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 : totaloffset+parentEl.offsetTop;
parentEl=parentEl.offsetParent;
}
return totaloffset;
}

function showhide(obj, e, visible, hidden, menuwidth){
if (ie4||ns6)
dropmenuobj.style.left=dropmenuobj.style.top="-400px"
if (menuwidth!=""){
dropmenuobj.widthobj=dropmenuobj.style
dropmenuobj.widthobj.width=menuwidth
}
if (e.type=="click" && obj.visibility=="hidden" || e.type=="mouseover")
	{
	/*for (var counter=0; counter<selectLists.length; counter++)
	{
		selectLists[counter].style.visibility = 'hidden'    
	}*/
	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){
menuwidth=menuwidth+'px';
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");

if(ns6){
dropmenuobj.style.left=obj.offsetWidth+6+"px";
dropmenuobj.style.top=dropmenuobj.y-clearbrowseredge(obj, "bottomedge")+obj.offsetHeight-27+"px"
}else{
dropmenuobj.style.left=obj.offsetWidth+12+"px";
dropmenuobj.style.top=clearbrowseredge(obj, "bottomedge")+dropmenuobj.y+"px"
}
//dropmenuobj.style.left=dropmenuobj.x+clearbrowseredge(obj, "rightedge")+obj.offsetWidth+"px"
//dropmenuobj.style.left=dropmenuobj.x+155+"px";
//dropmenuobj.style.top=dropmenuobj.y-3+"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)
	/*for (var counter=0; counter<selectLists.length; counter++)
	{
		selectLists[counter].style.visibility = 'visible'    
	}*/
delayhide=setTimeout("hidemenu()",disappeardelay)
}

function clearhidemenu(){
if (typeof delayhide!="undefined")
clearTimeout(delayhide)
}

if (hidemenu_onclick=="yes")
document.onclick=hidemenu
