/***********************************************
* 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 CorporateMenu=new Array()
CorporateMenu[0]='<a href="corporate.html">Glenevin can help organisations understand and minimise their risk by:<br/> - Reviewing the current situation, designing a risk appropriate and cost effective strategy,<br/> - Providing operational and management support for implementation and maintenance</a>'


var PersonalMenu=new Array()
PersonalMenu[0]='<a href="personal.html">Glenevin help organisation leaders and high net worth individuals live normal lives under the protective blanket of awareness and preparedness</a>'


var ComplianceMenu=new Array()
ComplianceMenu[0]='<a href="compliance.html">Glenevin aid organisations to achieve security standards and qualifications in keeping with best practice and regulatory requirements to operate and trade</a>'

var FraudMenu=new Array()
FraudMenu[0]='<a href="fraud.html">Glenevin prevent asset and intellectual property loss through the implementation of preventative countermeasures, process and training, together with incident investigation and process analysis to determine the root cause of loss and prevent reoccurrence  </a>'

var CrisisMenu=new Array()
CrisisMenu[0]='<a href="crisis.html">Glenevin prepare, train and exercise organisations for likely scenarios in Crisis Management and Business Continuity Management </a>'

var TigerMenu=new Array()
MergersMenu[0]='<a href="tiger_kidnapping.html">Glenevin have extensive experience at home and abroad in the field of security risk management and the implementation of effective counter measures against realised threats. </a>'
		
var menuwidth='200px' //default menu width
var menubgcolor='none'  //menu bgcolor
var disappeardelay=100  //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>')
//	document.write('<div id="dropmenudiv" style="visibility:hidden;width:'+menuwidth+';background-color:'+menubgcolor+'"></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, dropmenuobj)
{
  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, dropmenuobj)
{
 var edgeoffset=-10
 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, dropmenuobj)
{
	if (ie4||ns6)
		dropmenuobj.innerHTML=what.join("")
}

function dropdownmenu(obj, e, menucontents, menuwidth)
{
 // alert("Hello")
  if (window.event) event.cancelBubble=true
  else if (e.stopPropagation) e.stopPropagation()
  clearhidemenu()
  dropmenuobj=document.getElementById? document.getElementById("dropmenudiv") : dropmenudiv
  populatemenu(menucontents,dropmenuobj)

  if (ie4||ns6)
  {
    showhide(dropmenuobj.style, e, "visible", "hidden", menuwidth,dropmenuobj)
    dropmenuobj.x=30+getposOffset(obj, "left")
    dropmenuobj.y=getposOffset(obj, "top")-0
    dropmenuobj.style.left=dropmenuobj.x-clearbrowseredge(obj, "rightedge",dropmenuobj)+"px"
    dropmenuobj.style.top=dropmenuobj.y-clearbrowseredge(obj, "bottomedge",dropmenuobj)+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

