var buttData=new Array()
buttData[0]=['home.jpg" alt="deadbabybikes.org"',54,'http://www.deadbabybikes.org']
buttData[1]=['bj/bj50tall.jpg" alt="All Hail!"',23,'http://bicyclejesus.250x.com/" target="bj.org']
buttData[2]=['forvm50.jpg" alt="read and blab in the forum"',67,'http://deadbabybikes.net/forum/']

var miButtData=new Array()
miButtData[0]=['bikes','dbchoppa','BIKES','bikes! bikes! bikes!']
miButtData[1]=['glossary','glossary','GLSSY','the glossary']
miButtData[2]=['indices','folder','INDICES','files! files! files!']
miButtData[3]=['lynx','linx','LINKS','like minds']
miButtData[4]=['what','helpsqr','WHAT','wtf?']
miButtData[5]=['calendar/calendar','calendar','WHEN','calendar fun!']
miButtData[6]=['where','treasmap','WHERE','under where?']
miButtData[7]=['who','3folx','WHO','meet the babies']

function makeFiddyButton(whichOne,howDeepStr){
var FBString='<td align="center"><a href="';
FBString+=buttData[whichOne][2]+'"><img src="'+howDeepStr+'images/';
FBString+=buttData[whichOne][0]+' border="0" width="';
FBString+=buttData[whichOne][1]+'" height="50"></a></td>';
return(FBString)};

function makeMiniIconButton(whichOne,howDeepStr){
var BString='<td align="center"><p align="center"><a href="';
BString+=howDeepStr+miButtData[whichOne][0]+'.htm"><img src="';
BString+=howDeepStr+'images/dinky/';
BString+=miButtData[whichOne][1]+'.gif" alt="';
BString+=miButtData[whichOne][3]+'" border="0" width="13" height="13"><br>';
BString+='<font size="1" face="Century Gothic">'+miButtData[whichOne][2]+'</font></a></p></td>';
return(BString)};

function dbbNav(howDeep){
var howDeepStr='';
var fullBarStr='<div align="center"><center><table border="0" cellspacing="1" width="90%"><tr>';
for(var i=0;i<howDeep;i++)
           {howDeepStr+='../';}
for(var i=0;i<3;i++)
  {fullBarStr+=makeFiddyButton(i,howDeepStr);}
for(var i=0;i<4;i++)
  {fullBarStr+=makeMiniIconButton(i,howDeepStr);}
fullBarStr+='<td align="center"><p align="center">';
fullBarStr+='<img src="'+howDeepStr+'images/dinky/book13.gif" alt="read/write" width="13" height="13"><br>';
fullBarStr+='<a href="http://www.guestbookdepot.com/php/guestbook.php?book_id=540806&guid=31eb870c-be06-4368-aebd-b5365dff7049">';
fullBarStr+='<font size="1" face="Century Gothic">R</a>/';
fullBarStr+='<a href="http://www.guestbookdepot.com/php/sign_guestbook_form.php?book_id=540806&guid=31eb870c-be06-4368-aebd-b5365dff7049&">W</a></p>';
fullBarStr+='</font></td>';
for(var i=4;i<8;i++)
  {fullBarStr+=makeMiniIconButton(i,howDeepStr);}
fullBarStr+='<td align="center">';
fullBarStr+='<p align="center"><a href="mailto:deadbabybikes@hotmail.com">';
fullBarStr+='<img src="'+howDeepStr+'images/dinky/envelope.gif" alt="e-mail dbbhq" border="0" width="13" height="13"><br>';
fullBarStr+='<font size="1" face="Century Gothic">eMAIL</font></a></td>';
fullBarStr+='<td align="right" width="60%">';
fullBarStr+='<p align="right"><a href="http://www.angelfire.com/wa3/deadbaby/">';
fullBarStr+='<img src="'+howDeepStr+'images/upload.gif" alt="upload your stuff!" border="0" width="50" height="50"></a></p></td>';
document.writeln(fullBarStr)};