	defaultStatus=""

		var nextPage=""
		var prevElem=""
		var docObj= ""
		var styleObj= ""
		var itemObj1= ""
		var itemObj2= ""
		var itemObj3= ""
		var itemObj4= ""
		var scrollPos="document.body.scrollTop"
		var right=false
		var down=false
		var startmenuX=screen.availWidth

		if (document.all) {
			docObj = "document.all."
			styleObj = ".style"
		}
		else {
			docObj = "document."
			styleObj = ""
			scrollPos="window.pageYOffset"
		}

		if (document.getElementById){
		docObj = "document.getElementById('"
		styleObj = "').style"
		}

		firstTime = true
		var yy=-600
		var xx=-210

		function changePage(where){
			location.href=where
		}

		function changeMenu(evt){
			if(document.all){
				if(parseInt(evt.x)<startmenuX){
					moveDown()
				}
				else{
					moveLeft()
				}
			}
			else{
				if(parseInt(evt.pageX)<startmenuX){
					moveDown()
				}
				else{
					moveLeft()
				}
			}
		}

		function moveDown() {
			if(down==true){return}
			if (firstTime){
				itemObj1 = eval(docObj + "vline"+ styleObj)
				itemObj2 = eval(docObj + "links"+ styleObj)
				itemObj3 = eval(docObj + "infomx"+ styleObj)
				firstTime=false
			}
			itemObj1.top=yy+eval(scrollPos)
			if(yy>0){
			itemObj1.top=30+eval(scrollPos)
			document.menu5.src="info5.gif" //was info.gif
			xx=-100
			down=true
			moveRight()
			}
			else{
			yy+=20
			setTimeout("moveDown()",2)
			}
		}

		function moveUp() {
			if(down==false){return}
			itemObj1.top=yy+eval(scrollPos)
			if(yy<-600){
			down=false
			document.menu5.src="info0.gif"
			itemObj3.visibility="hidden"
			return
			}
			else{
			yy-=40
			setTimeout("moveUp()",2)
			}
		}


		function moveRight() {
			if(right==true){return}
			itemObj2.top=65+eval(scrollPos)
			itemObj2.left=xx
			if(xx>20){
			right=true
			itemObj2.left=26
			itemObj3.visibility="visible"
			xx=26
			return
			}
			else{
			xx+=10
			setTimeout("moveRight()",10)
			}
		}

		function moveLeft() {
			if(right==false){return}
			itemObj2.left=xx
			if(xx<-210){
			right=false
			moveUp()
			}
			else{
			xx-=10
			setTimeout("moveLeft()",10)
			}
		}

		function openWindow()
			{
			panelWidth = screen.width-91
			if (document.all) {panelWidth-=2}
			panelHeight = screen.height-28
			newWindow=window.open('http://uk.multimap.com/p/browse.cgi?pc=SE16DS&scale=10000','newWin','left=83,width='+panelWidth+',height='+panelHeight)
			}