<!--
	if (document.all)
	document.write('<div id="slidemenubar2" style="left:-230">')

	function regenerate(){
		window.location.reload()
	}
	function regenerate2(){
		if (document.layers)
		setTimeout("window.onresize=regenerate",400)
	}
	window.onload=regenerate2
	if (document.all){
		document.write('</div>')
		themenu=document.all.slidemenubar2.style
		rightboundary=0
		leftboundary=-250
	}
	else{
		themenu=document.layers.slidemenubar
		rightboundary=250
		leftboundary=10
	}
	var dragapproved=false
	var x1,x2
	if (document.layers)
		themenu.captureEvents(Event.MOUSEDOWN | Event.MOUSEUP)
function move(e){
	if (document.all&&event.button==1&&dragapproved){
		if(temp1+event.clientX-x1>leftboundary)
			themenu.pixelLeft=Math.min(rightboundary,temp1+event.clientX-x1)
		else
			themenu.pixelLeft=Math.max(leftboundary,temp1+event.clientX-x1)
		}
	else if (document.layers){
		if(themenu.left+e.x-x2>leftboundary)
			themenu.left=Math.min(rightboundary+2,themenu.left+e.x-x2)
		else
			themenu.left=Math.max(leftboundary-2,themenu.left+e.x-x2)
		}
}
function drags(e){
	if (document.all){
		dragapproved=true
		temp1=themenu.pixelLeft
		x1=event.clientX
		document.onmousemove=move
	}
	else{
		themenu.captureEvents(Event.MOUSEMOVE)
		x2=e.x
	}
}
function stopit(){
	if (document.all){
		dragapproved=false
	}
	if (document.layers)
		themenu.releaseEvents(Event.MOUSEMOVE)
	}
	if (document.all){
		document.all.slidemenubar2.onmousedown=drags
		document.all.slidemenubar2.onmouseup=new Function("dragapproved=false")
		document.onselectstart=new Function("return false")
	}
	else if (document.layers){
		themenu.onmousedown=drags
		themenu.onmousemove=move
		themenu.onmouseup=stopit
}
//-->