<!--
/***********************************************
* 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="baselite2.htm">Baselite</a>'
menu1[1]='<a href="baseliteplus.htm">Baselite Plus</a>'
menu1[2]='<a href="exliteeco.htm">Exlite Eco</a>'
menu1[3]='<a href="exlite.htm">Exlite</a>'
menu1[4]='<a href="exbladerec.htm">Exblade Recessed</a>'
menu1[5]='<a href="exbladeled.htm">Exblade LED</a>'
menu1[6]='<a href="flushrite.htm">Flushrite</a>'
menu1[7]='<a href="venus.htm">Venus</a>'
menu1[8]='<a href="apollo.htm">Apollo</a>'
menu1[9]='<a href="saturn.htm">Saturn</a>'
menu1[10]='<a href="twinlite.htm">Twinlite</a>'
menu1[11]='<a href="decolite.htm">Decolite</a>'
menu1[12]='<a href="lvc.htm">L.V.C.Boxed</a>'
menu1[13]='<a href="lvcsplit.htm">L.V.C.Split Pack</a>'
menu1[14]='<a href="conversions.htm">Conversions</a>'
menu1[15]='<a href="batteries.htm">Batteries</a>'
menu1[16]='<a href="photo.htm">Photoluminescent Signs</a>'
menu1[17]='<a href="basecbs.htm">Base CBS - Inverters</a>'
menu1[18]='<a href="testbase.htm">Testrite - Baselite</a>'
menu1[19]='<a href="testsys.htm">Testing System</a>'



//Contents for menu 2, and so on
var menu2=new Array()
menu2[0]='<a href="c100.htm">C100</a>'
menu2[1]='<a href="c200.htm">C200</a>'
menu2[2]='<a href="series65.htm">Series 65</a>'
menu2[3]='<a href="orbis.htm">Orbis</a>'
menu2[4]='<a href="stdsounder.htm">Standard Sounder</a>'
menu2[5]='<a href="sounderbeacon.htm">Sounder Beacon</a>'
menu2[6]='<a href="xenonbeacon.htm">Xenon Beacon</a>'
menu2[7]='<a href="basesounder.htm">Base Sounder</a>'
menu2[8]='<a href="roomsounder.htm">Room Sounder</a>'
menu2[9]='<a href="beacon120.htm">Sounder Beacon 120</a>'
menu2[10]='<a href="bell.htm">Fire Bell</a>'
menu2[11]='<a href="beamdet.htm">Beam Detector</a>'
menu2[12]='<a href="manualcall.htm">Manual Call Point Range</a>'
menu2[13]='<a href="retainers.htm">Door Retainers & Closers</a>'
menu2[14]='<a href="ancillary.htm">Ancillary Products</a>'
menu2[15]='<a href="voicesounder.htm">Voice Sounder</a>'
menu2[16]='<a href="testtool.htm">Test Tools</a>'
menu2[17]='<a href="issounder.htm">IS-Sounder</a>'
menu2[18]='<a href="issounderbeacon.htm">IS-Sounder Beacon</a>'
menu2[19]='<a href="isbeacon.htm">IS-Beacon</a>'
menu2[20]='<a href="voicealarm.htm">Voice Alarm System</a>'
menu2[21]='<a href="aspirated.htm">Aspirated Fire Alarm System</a>'
menu2[22]='<a href="radiofire.htm">XPander Radio Fire Alarm System</a>'
menu2[23]='<a href="boxer.htm">Boxer Alarm</a>'
menu2[24]='<a href="terrier.htm">Terrier Alarm</a>'
menu2[25]='<a href="alarmsense.htm">AlarmSense Apollo</a>'
menu2[26]='<a href="multiflex.htm">Multiflex - Multiflex Plus</a>'
menu2[27]='<a href="e100.htm">Analogue E100</a>'
menu2[28]='<a href="e200.htm">Analogue E200</a>'
menu2[29]='<a href="e300.htm">Analogue E300</a>'
menu2[30]='<a href="xp95.htm">XP 95 Detector</a>'
menu2[31]='<a href="discovery.htm">Discovery Detector</a>'


//Contents for menu 3, and so on
var menu3=new Array()
menu3[0]='<a href="wcalarms.htm">Disabled Toilet Alarms</a>'
menu3[1]='<a href="basecall.htm">Base Call Systems</a>'
menu3[2]='<a href="basecallq.htm">Base Call (Quantec)</a>'
menu3[3]='<a href="induction.htm">Induction Loop</a>'
menu3[4]='<a href="carecall.htm">Disabled Refuge</a>'


		
var menuwidth='165px' //default menu width
var menubgcolor='#333333'  //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
 -->