// JavaScript Document

/***********************************************
* 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 menu1=new Array()
menu1[0]='<a href="mailto:feedback@bismatravelandtours.co.uk" class="menulinks" target="_blank">Send Us Email</a>'


//Contents for menu 2, and so on
var menu2=new Array()
menu2[0]='<a href="AFRICA.html" class="menulinks" title="AFRICA" target="_self">Africa</a>'
menu2[1]='<a href="AustraliaAndNewZealand.html" class="menulinks" title="Australia & New Zealand" target="_self">Australia & New Zealand</a>'
menu2[2]='<a href="FAREAST.html" title="FAR EAST" class="menulinks" target="_self">Far East</a>'
menu2[3]='<a href="CityBreaks.html" title="FAR EAST" class="menulinks" target="_self">Europe</a>'
menu2[4]='<a href="MIDDLEEAST.html" title="Middle East" class="menulinks" target="_self">Middle East</a>'
menu2[5]='<a href="northamerica.html" title="North America" class="menulinks" target="_self">North America</a>'
menu2[6]='<a href="southamerica.html" title="South America" class="menulinks" target="_self">South America</a> '
menu2[6]='<a href="hajj_2009.html" title="Hajj Package 2009" class="menulinks" target="_self">Hajj Packages 2009</a> '


/*
menu2[0]='<a href="ContactUs.html">Accra</a>'
menu2[1]='<a href="ContactUs.html">Amsterdam</a>'
menu2[2]='<a href="ContactUs.html">Ankara</a>'
menu2[3]='<a href="ContactUs.html">Auckland</a>'
menu2[4]='<a href="ContactUs.html">Bangkok</a>'
menu2[5]='<a href="ContactUs.html">Beijing</a>'
menu2[6]='<a href="ContactUs.html">Brussels</a>'
menu2[7]='<a href="ContactUs.html">Cairo</a>'
menu2[8]='<a href="ContactUs.html">Cape town</a>'
menu2[9]='<a href="ContactUs.html">Dar-us-salaam</a>'
menu2[10]='<a href="ContactUs.html">Delhi</a>'
menu2[11]='<a href="ContactUs.html">Doha</a>'
menu2[12]='<a href="ContactUs.html">Dubai</a>'
menu2[13]='<a href="ContactUs.html">Entebbe</a>'
menu2[14]='<a href="ContactUs.html">Frankfurt</a>'
menu2[15]='<a href="ContactUs.html">Goa</a>'
menu2[16]='<a href="ContactUs.html">Harare</a>'
menu2[17]='<a href="ContactUs.html">Hong Kong</a>'
menu2[18]='<a href="ContactUs.html">Islamabad</a>'
menu2[19]='<a href="ContactUs.html">Istanbul</a>'
menu2[20]='<a href="ContactUs.html">Jakarta</a>'
menu2[21]='<a href="ContactUs.html">Jeddah</a>'
menu2[22]='<a href="ContactUs.html">Jo’burg</a>'
menu2[23]='<a href="ContactUs.html">Karachi</a>'
menu2[24]='<a href="ContactUs.html">Katmandu</a>'
menu2[25]='<a href="ContactUs.html">Khartoum</a>'
menu2[26]='<a href="ContactUs.html">Kuala Lumpur</a>'
menu2[27]='<a href="ContactUs.html">Lagos</a>'
menu2[28]='<a href="ContactUs.html">Madrid</a>'
menu2[29]='<a href="ContactUs.html">Mumbai</a>'
menu2[30]='<a href="ContactUs.html">Nairobi	</a>'
menu2[31]='<a href="ContactUs.html">Paris</a>'
menu2[32]='<a href="ContactUs.html">Rome</a>'
menu2[33]='<a href="ContactUs.html">Sydney</a>'
*/


//Contents for menu 1
var menu3=new Array()
menu3[0]='<a href="Bismacreditcardfax.pdf" class="menulinks" target="_blank">DownLoad Card Info</a>'



var menuwidth='165px' //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?

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

