

/***********************************************
* 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 ServicesMenu=new Array()
//ServicesMenu[0]='<a href="../services_assurance-services.html" onMouseover="dropdownmenu(this, event, InformationSecurityConsultancyServicesMenu,\'250px\')" onMouseout="delayhidemenu()" >Assurance Services<img src="../images/arrows.gif" width="14" height="9" border="0"></a>'
ServicesMenu[0]='<a href="../services_assurance-services.html" >Assurance Services<img src="../images/arrows.gif" width="14" height="9" border="0"></a>'
ServicesMenu[1]='<a href="../services_information-security-consultancy.html">Information Security Consultancy<img src="../images/arrows.gif" width="14" height="9" border="0"></a>'
ServicesMenu[2]='<a href="../services_policy-strategy.html">Policy Strategy<img src="../images/arrows.gif" width="14" height="9" border="0"></a>'
ServicesMenu[3]='<a href="../services_systems-review.html">Systems Review<img src="../images/arrows.gif" width="14" height="9" border="0"></a>'
ServicesMenu[4]='<a href="../services_information-security-consultancy.html#3">Safety Net<img src="../images/arrows.gif" width="14" height="9" border="0"></a>'
ServicesMenu[5]='<a href="../services_training.html">Training<img src="../images/arrows.gif" width="14" height="9" border="0"></a>'


var AssuranceServicesMenu=new Array()
AssuranceServicesMenu[0]='<a href="../services_assurance-services.html#1">Vulnerability Assessments<img src="../images/arrows.gif" width="14" height="9" border="0"></a>'
AssuranceServicesMenu[1]='<a href="../services_assurance-services.html#2">Penetration Testing (Ethical Hacking)<img src="../images/arrows.gif" width="14" height="9" border="0"></a>'
AssuranceServicesMenu[2]='<a href="../services_assurance-services.html#3">Safety Net Program<img src="../images/arrows.gif" width="14" height="9" border="0"></a>'
AssuranceServicesMenu[3]='<a href="../services_assurance-services.html#4">Application Security Testing<img src="../images/arrows.gif" width="14" height="9" border="0"></a>'
AssuranceServicesMenu[4]='<a href="../services_assurance-services.html#5">Server Hardening<img src="../images/arrows.gif" width="14" height="9" border="0"></a>'


var InformationSecurityConsultancyServicesMenu=new Array()
InformationSecurityConsultancyServicesMenu[0]='<a href="../services_information-security-consultancy.html#1">Information Security Manager<img src="../images/arrows.gif" width="14" height="9" border="0"></a>'
InformationSecurityConsultancyServicesMenu[1]
			='<a href="../services_information-security-consultancy.html#2">Information Security Advisory Program<img src="../images/arrows.gif" width="14" height="9" border="0"></a>'
InformationSecurityConsultancyServicesMenu[2]='<a href="../services_information-security-consultancy.html#3">Computer Forensics (eForensics)<img src="../images/arrows.gif" width="14" height="9" border="0"></a>'
InformationSecurityConsultancyServicesMenu[3]='<a href="../services_information-security-consultancy.html#4">ISO 17799/ BS 7799<img src="../images/arrows.gif" width="14" height="9" border="0"></a>'
InformationSecurityConsultancyServicesMenu[4]='<a href="../services_information-security-consultancy.html#5">Training<img src="../images/arrows.gif" width="14" height="9" border="0"></a>'

var TrainingServicesMenu=new Array()
TrainingServicesMenu[0]='<a href="../services_training.html#1">Information Security<img src="../images/arrows.gif" width="14" height="9" border="0"></a>'
TrainingServicesMenu[1]='<a href="../services_training.html#2">Systems Hardening<img src="../images/arrows.gif" width="14" height="9" border="0"></a>'
TrainingServicesMenu[2]='<a href="../services_training.html#3">Executive Briefings<img src="../images/arrows.gif" width="14" height="9" border="0"></a>'
TrainingServicesMenu[3]='<a href="../services_training.html#4">Cryptography<img src="../images/arrows.gif" width="14" height="9" border="0"></a>'



		
var menuwidth='165px' //default menu width
var menubgcolor='lightyellow'  //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=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, 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=80+getposOffset(obj, "left")
    dropmenuobj.y=getposOffset(obj, "top")-20
    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


