// menu.js
// Dav1d's Floating Menu "DEXmenu"
// Last Update: 2002-12-12
//


// We're already inside a script !!
// <script type="text/javascript" language="javascript1.2">


// * * * * * * * * * * * * * * *
// * Floating Navigation Menu  *
// * * * * * * * * * * * * * * *


function setVariables() {
  if (navigator.appName == "Netscape") {
    v=".top=";
    dS="document.";
    sD="";
    y="window.pageYOffset";
  }
  else {
    v=".pixelTop=";
    dS="";
    sD=".style";
   y="document.body.scrollTop";
  }
}


/*      dS     object  sD       v             yy
     --------- ------- -------- ------------- -----------------------------
NS = document. object1          .top=         eval("window.pageYOffset")
IE =           object1 .style   .pixelTop=    eval("document.body.scrollTop") 
*/

function NavTool() {
  object="object2";
  yy=eval(y);
  eval(dS+object+sD+v+yy);
  setTimeout("NavTool()",300);
}

function NavStop() {
  object="object2";
  yy=eval(y);
  eval(dS+object+sD+v+yy);
  setTimeout("",0);
}

/*  End of Floating Menu Code */



// function showmenu() {




  text=" \n";
  text=text+"   <FORM name=dropmenu01> \n";
  text=text+"   <center> \n";
  text=text+"   <table border=1 bgcolor=navy width=100% cellpadding=0 cellspacing=0 align=center><tr><td valign=middle align=center> \n";
  text=text+"     <font face=verdana size=1 color=white><b>www.dav1d.com</b> &nbsp;&nbsp;\n";
  text=text+"       <a href=../homepage/index.html              ><font color=White>Home</font></a>&nbsp; \n";
  text=text+"       <a href=../homepage/index.html#stories      ><font color=White>Stories</font></a>&nbsp; \n";
  text=text+"       <a href=../fun/index.html                   ><font color=White><b>Fun</b> <img src=../homepage/new.gif border=0></font></a>&nbsp; \n";
  text=text+"       <a href=../flying/index.html                ><font color=White>Flying</font></a>&nbsp;&nbsp; \n";
  text=text+"       <a href=../homepage/contact.html            ><font color=White><b>Contact</b> </font></a>&nbsp;&nbsp; \n";


// dropdown START

  text=text+"    <SELECT name='URL' onChange='if(options[selectedIndex].value) window.location.href=(options[selectedIndex].value)'>  \n";
  text=text+"       <OPTION value=javascript:not_ready(); selected              >Site Map         </OPTION> \n";
  text=text+"       <OPTION value=/homepage/index.html          >. HOME           </OPTION> \n";
  text=text+"       <OPTION value=/homepage/index.html#stories  >. STORIES        </OPTION> \n";
  text=text+"       <OPTION value=/fun/index.html               >. FUN  **NEW**   </OPTION> \n";
  text=text+"       <OPTION value=/homepage/index.html#pictures >. PICTURES       </OPTION> \n";
  text=text+"       <OPTION value=/homepage/AirVenture2003-Public/index.html  >... AirVenture 2003 #1 *NEW*</OPTION> \n";
  text=text+"       <OPTION value=/homepage/AirVenture2003-Personal/index.html>... AirVenture 2003 #2 *NEW*</OPTION> \n";
  text=text+"       <OPTION value=/homepage/Bahamas2002/index.html        >... Bahamas 2002 </OPTION> \n";
  text=text+"       <OPTION value=/homepage/Bahamas2003/index.html        >... Bahamas 2003 </OPTION> \n";
  text=text+"       <OPTION value=/battlebots/index.html                  >... Battlebots   </OPTION> \n";
  text=text+"       <OPTION value=/ChallengeAir/index.html                >... ChallengeAir </OPTION> \n";
  text=text+"       <OPTION value=/homepage/CNE2001_NCMD/index.html       >... CNE 2001     </OPTION> \n";
  text=text+"       <OPTION value=/homepage/israel/index.html             >... Israel 1997  </OPTION> \n";
  text=text+"       <OPTION value=/homepage/toys/index.html               >... My Toys 2001 </OPTION> \n";
  text=text+"       <OPTION value=/homepage/ShortCircuit2/index.html      >... ShortCircuit2</OPTION> \n";
  text=text+"       <OPTION value=/homepage/thumbs.html                   >... Thumbs       </OPTION> \n";

  text=text+"       <OPTION value=                                              >. MISCELLANEOUS  </OPTION> \n";
  text=text+"       <OPTION value=/fun/index.html                         >... Fun          </OPTION> \n";
  text=text+"       <OPTION value=/halloween/index.html                   >... Halloween    </OPTION> \n";
  text=text+"       <OPTION value=/Joshua_20020910/index.html             >... Joshua 2002  </OPTION> \n";
  text=text+"       <OPTION value=/jason/index.html                       >... Jason        </OPTION> \n";
  text=text+"       <OPTION value=/jessica/index/html                     >... Jessica      </OPTION> \n";
  text=text+"       <OPTION value=/Am0sTV/index.html                      >... Am0sTV       </OPTION> \n";
  text=text+"       <OPTION value=/HJG/index.html                         >... HJG          </OPTION> \n";
  text=text+"       <OPTION value=/nyc_pix/index.html                     >... NYC Pix      </OPTION> \n";
  text=text+"       <OPTION value=/homepage/contact.html        >. CONTACT        </OPTION> \n";


  text=text+"    </SELECT> \n";
  text=text+"    <NOSCRIPT> \n";
  text=text+"       <INPUT type=submit value=Go> \n";
  text=text+"    </NOSCRIPT> \n";

// dropdown END



  text=text+"       <a href='javascript:not_ready();'                         ><font color=Navy >*</font></a>&nbsp;&nbsp; \n";

  text=text+"   <a href=../website><font color=yellow face=verdana size=1 ><B>New Website is HERE!</b></font></a>  ";

  text=text+"     </font> \n";



  text=text+"   </td></tr></table> \n";
  text=text+"   </center> \n";

  text=text+"   </FORM> \n";

  document.write(text);

  


// }

//   </script>

