// JavaScript Document

var slidemenu_width='200px' //specify width of menu (in pixels)
var slidemenu_reveal='12px' //specify amount that menu should protrude initially
var slidemenu_top='170px'   //specify vertical offset of menu on page

var ns4=document.layers?1:0
var ie4=document.all
var ns6=document.getElementById&&!document.all?1:0

if (ie4||ns6)
document.write('<div id="slidemenubar2" style="left:'+((parseInt(slidemenu_width)-parseInt(slidemenu_reveal))*-1)+'px; top:'+slidemenu_top+'; width:'+slidemenu_width+'" onMouseover="pull()" onMouseout="draw()">')
else if (ns4){
document.write('<style>\n#slidemenubar{\nwidth:'+slidemenu_width+';}\n<\/style>\n')
document.write('<layer id="slidemenubar" left=0 top='+slidemenu_top+' width='+slidemenu_width+' onMouseover="pull()" onMouseout="draw()" visibility=hide>')
}

var sitems=new Array()

///////////Edit below/////////////////////////////////

//siteitems[x]=["Item Text", "Optional URL associated with text"]

sitems[0]=["<Strong>Other Sites</Strong>", ""]
sitems[1]=["Content Management", "http://www.backbonesolutions.com"]
sitems[2]=["Search Engine Optimisation", "http://www.googod.net"]
sitems[3]=["Water Cooler", "http://www.water-splash.co.uk"]
sitems[4]=["Northern Rock", "http://www.a1credit.co.uk"]
sitems[5]=["Lombard Direct", "http://www.a1credit.co.uk"]
sitems[6]=["Swivel Chairs", "http://www.btoffice.com"]
sitems[7]=["Chinese Paintings", "http://www.the-gallery-of-china.com"]
sitems[8]=["UK Flowers", "http://www.flowers-send-flowers.com"]
sitems[9]=["Flowers", "http://www.designerflowers.org.uk"]
sitems[10]=["Gas Boilers", "http://www.tradeplumbing.co.uk"]
sitems[11]=["Mobility Power Chairs", "http://www.ace-mobility.com"]
sitems[12]=["Graphic Design Company", "http://www.proactivepr.org"]
sitems[13]=["Plus Size Fancy Dress", "http://www.fantale.com"]
sitems[14]=["Motorcycle Helmets", "http://www.motobrio.com"]
sitems[15]=["Occasional Furniture", "http://www.easyfurniture.co.uk"]
sitems[16]=["Soffits", "http://www.angelplastics.co.uk"]
sitems[17]=["Corporate Entertainment", "http://www.laughlines.net"]
sitems[18]=["Carbon Fiber", "http://www.walnutdashcompany.com"]
sitems[19]=["Boxes", "http://www.cardboardboxes.co.uk"]
sitems[20]=["Personal Car Leasing", "http://www.leasecarsdirect.co.uk"]

//If you want the links to load in another frame/window, specify name of target (ie: target="_new")
var target=""

/////////////////////////////////////////////////////////

if (ie4||ns4||ns6){
for (i=0;i<sitems.length;i++){
if (sitems[i][1])
document.write('<a href="'+sitems[i][1]+'" target="'+target+'">')
document.write(sitems[i][0])
if (sitems[i][1])
document.write('</a>')
document.write('<br>\n')
}
}

function regenerate(){
window.location.reload()
}
function regenerate2(){
if (ns4){
document.slidemenubar.left=((parseInt(slidemenu_width)-parseInt(slidemenu_reveal))*-1)
document.slidemenubar.visibility="show"
setTimeout("window.onresize=regenerate",400)
}
}
window.onload=regenerate2

rightboundary=0
leftboundary=(parseInt(slidemenu_width)-parseInt(slidemenu_reveal))*-1

if (ie4||ns6){
document.write('</div>')
themenu=(ns6)? document.getElementById("slidemenubar2").style : document.all.slidemenubar2.style
}
else if (ns4){
document.write('</layer>')
themenu=document.layers.slidemenubar
}

function pull(){
if (window.drawit)
clearInterval(drawit)
pullit=setInterval("pullengine()",10)
}
function draw(){
clearInterval(pullit)
drawit=setInterval("drawengine()",10)
}
function pullengine(){
if ((ie4||ns6)&&parseInt(themenu.left)<rightboundary)
themenu.left=parseInt(themenu.left)+10+"px"
else if(ns4&&themenu.left<rightboundary)
themenu.left+=10
else if (window.pullit){
themenu.left=0
clearInterval(pullit)
}
}

function drawengine(){
if ((ie4||ns6)&&parseInt(themenu.left)>leftboundary)
themenu.left=parseInt(themenu.left)-10+"px"
else if(ns4&&themenu.left>leftboundary)
themenu.left-=10
else if (window.drawit){
themenu.left=leftboundary
clearInterval(drawit)
}
}