/***********************************************
* 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 menu 1
var region=new Array()
region[0]='<a href="carte_de_la_miramichi.html">Carte de la Miramichi</a>'
region[1]='<a href="demographie.html">Démographie</a>'
region[2]='<a href="immobilier.html">Immobilier</a>'
region[3]='<a href="economie_locale.html">Économie locale</a>'
region[4]='<a href="couts_dentreprise.html">Coûts d\'entreprise</a>'
region[5]='<a href="secteurs_strategiques.html">Secteurs stratégiques</a>'

//Contents for menu 2, and so on
var services=new Array()
services[0]='<a href="equipe_miramichi.html">Équipe Miramichi</a>'
services[1]='<a href="demarrer_une__entreprise.html">Démarrer une entreprise</a>'
services[2]='<a href="croissance_dentreprise.html">Croissance d\'entreprise</a>'
services[3]='<a href="development_officers.html">Development Officers</a>'

var business=new Array()
business[0]='<a href="http://www.enterprisemiramichi.com/bizdir.aspx">Directory</a>'
business[1]='<a href="ideabank.aspx">Banque d\'idée</a>'
business[2]='<a href="investisseurs.html">Investisseurs</a>'
business[3] = '<a href="immobilier_commercial.html">Immobilier</a>'
business[4] = '<a href="listings.aspx">Immobilier Commercial</a>'

var news=new Array()
news[0]='<a href="nouvelles_e_evenements.html">Communiqués de presse</a>'
news[1]='<a href="http://www.enterprisemiramichi.com/daffaires/">D\'affaires</a>'
news[2]='<a href="activites.html">Activités</a>'
news[3]='<a href="trousse_mediatique.html">Trousse médiatique</a>'
news[4]='<a href="rapports.html">Rapports</a>'

var weblinks=new Array()
weblinks[0]='<a href="entrepreneurs.html">Entrepreneurs</a>'
weblinks[1]='<a href="financement.html">Financement</a>'
weblinks[2]='<a href="partenaires.html">Partenaires</a>'
weblinks[3]='<a href="services_aux_entreprises.html">Services aux entreprises</a>'
weblinks[4]='<a href="liens_emploi.html">Emploi</a>'

var about=new Array()
about[0]='<a href="reseau_entreprise.html">Réseau Entreprise</a>'
about[1]='<a href="roles_et_objectifs.html">Rôles et objectifs</a>'
about[2]='<a href="plan_strategique.html">Plan stratégique</a>'
about[3]='<a href="strategie_communautaire.html">Stratégie de croissance communautaire</a>'
about[4]='<a href="biographies_du_personnel.html">Biographies au personnel</a>'
about[5]='<a href="conseil_dadministration.html">Conseil d\'administration</a>'
about[6]='<a href="forum_consultatif.html">Forum consultatif</a>'

var menuwidth='165px' //default menu width
var menubgcolor='#CDD0D4'  //menu bgcolor
var disappeardelay=250  //menu disappear speed onMouseout (in miliseconds)
var hidemenu_onclick="no" //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="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="-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
