neighborhoodArray = new Array()
neighborhoodArray[0] = new Array("Back to Neighborhoods Home Page","neighborhoods.htm","","fremont9_sm.gif")
neighborhoodArray[1] = new Array("Ballard","ballard.htm","Ballard is a unique and eclectic neighborhood, with one foot planted in Seattle's colorful past and the other stepping into Seattle's vibrant future.","ballard1_sm.gif")
neighborhoodArray[2] = new Array("Capitol Hill","capitol.htm","No neighborhood in the city has a more active sidewalk scene, day or night, than Broadway, Capitol Hill's believe-it-or not version of Main Street.","capitol_sm1.jpg")
neighborhoodArray[3] = new Array("Downtown Seattle","dntn.htm","Downtown Seattle is the commercial heart of our funky metropolis.","seattle_sm1.jpg")
neighborhoodArray[4] = new Array("Fremont","fremont.htm","Cross the blue and orange drawbridge with its gaily lit neon sculptures and enter the Republic of Fremont, Center of the Universe.","fremont9_sm.gif")
neighborhoodArray[5] = new Array("Chinatown-International District","id.htm","As one of the city's oldest neighborhoods, Seattle's Chinatown-International District is rich with history and culture.","international_sm1.jpg")
neighborhoodArray[6] = new Array("West Seattle","westseattle.htm","West Seattle, a hilly district in the southwest section of Seattle, Washington, encompasses all of Seattle west of the Duwamish River.","westseattle_sm1.jpg")

function createBot() {
document.write('You are currently on: <b>'+neighborhoodArray[thisPage][0]+'</b><br><br>')
document.write('<div align="center">');
document.write('<table width="100%" cellpadding="5" cellspacing="0">');
document.write('<tr>');
document.write('<td style="color:#660000"><b>Previous Attraction</b></td>');
document.write('<td style="color:#660000"><b>Next Attraction</b></td>');
document.write('</tr>');

document.write('<tr>');

// write previous location
document.write('<td valign="top" style="border:1px solid #999999" bgcolor="#F3F4F4" width="50%" height="35">')
document.write('<table width="100%" cellpadding="3" cellspacing="0" border="0"><tr>')
document.write('<td width="75" valign="top"><a href="'+neighborhoodArray[thisPage-1][1]+'"><img src="images/'+neighborhoodArray[thisPage-1][3]+'" border="0"></a></td>')
document.write('<td style="font-size:10pt" valign="top"><a href="'+neighborhoodArray[thisPage-1][1]+'">'+neighborhoodArray[thisPage-1][0]+'</a><br>'+neighborhoodArray[thisPage-1][2]+'</td>')
document.write('</tr></table>')
document.write('</td>')

// write next location
totNum = (neighborhoodArray.length - 1)

if(thisPage == totNum){
document.write('<td style="border:1px solid #999999" bgcolor="#F3F4F4" width="50%" height="35">&nbsp;<a href="neighborhoods.htm">Return to Neighborhoods Home Page</a></td>')
} else {

document.write('<td valign="top" style="border:1px solid #999999" bgcolor="#F3F4F4" width="50%" height="35">')
document.write('<table width="100%" cellpadding="3" cellspacing="0" border="0"><tr>')
document.write('<td width="75" valign="top"><a href="'+neighborhoodArray[thisPage+1][1]+'"><img src="images/'+neighborhoodArray[thisPage+1][3]+'" border="0"></a></td>')
document.write('<td style="font-size:10pt" valign="top"><a href="'+neighborhoodArray[thisPage+1][1]+'">'+neighborhoodArray[thisPage+1][0]+'</a><br>'+neighborhoodArray[thisPage+1][2]+'</td>')
document.write('</tr></table>')
document.write('</td>')

}


document.write('</tr></table>');
document.write('</div>');
}
