<!-- Cloak...
// Javascript Navigation Menu V1.02.25
// Copyright 2001, James LiGate

var root='http://no.place.like.home.mindspring.com/abbot/'

page=new Array()
page[1]=root+'index.htm'
page[2]=root+'chat/index.htm'
page[3]=root+'forum/index.htm'
page[4]=root+'store/index.htm'
page[5]=root+'about/index.htm'
page[6]=root+'groups/index.htm'
page[7]=root+'articles/index.htm'
page[8]=root+'resources/index.htm'
page[9]=root+'more/index.htm'
page[10]='mailto:escape@usa.net'

button=new Array()
button[1] = root+'images/btnl_home.gif'
button[2] = root+'images/btnl_chat.gif'
button[3] = root+'images/btnl_forum.gif'
button[4] = root+'images/btnl_store.gif'
button[5] = root+'images/btnl_about.gif'
button[6] = root+'images/btnr_groups.gif'
button[7] = root+'images/btnr_articles.gif'
button[8] = root+'images/btnr_resources.gif'
button[9] = root+'images/btnr_more.gif'
button[10]= root+'images/btnr_email.gif'

// led?_na.gif if function is not available

startLED=new Array()
startLED[1] = root+'images/ledl_off.gif'
startLED[2] = root+'images/ledl_off.gif'
startLED[3] = root+'images/ledl_off.gif'
startLED[4] = root+'images/ledl_off.gif'
startLED[5] = root+'images/ledl_off.gif'
startLED[6] = root+'images/ledr_off.gif'
startLED[7] = root+'images/ledr_off.gif'
startLED[8] = root+'images/ledr_off.gif'
startLED[9] = root+'images/ledr_off.gif'
startLED[10]= root+'images/ledr_off.gif'


LEDna=new Array()
LEDna[0]=root+'images/ledl_na.gif'
LEDna[1]=root+'images/ledr_na.gif'

LEDoff=new Array()
LEDoff[0]=root+'images/ledl_off.gif'
LEDoff[1]=root+'images/ledr_off.gif'

LEDon=new Array()
LEDon[0]=root+'images/ledl_on.gif'
LEDon[1]=root+'images/ledr_on.gif'

LEDhi=new Array()
LEDhi[0]=root+'images/ledl_hi.gif'
LEDhi[1]=root+'images/ledr_hi.gif'


function load(destPage) {
// was window.location.href -- changed to drop sticky frames
	if(destPage!=thisPage && page[destPage]!='') top.location.href=page[destPage]
}

function setLED(imageName, pageNum, side, state) {
	if(page[pageNum]=='') imageName.src=LEDna[side]
	else if(pageNum==thisPage) imageName.src=LEDhi[side]
	else {
		if(state==0) imageName.src = LEDoff[side]
		else if(state==1) imageName.src = LEDon[side]
		else imageName.src = LEDhi[side]
	}
}
// ... and Dagger -->
