//lines starting with two slashes are comments/instructions
//Keenspace dropdown developed by Steve Tonks, modified for educational use by Scott Maddix
// Web Site: gear.keenspace.com
//This code is freely distributable but is prohibited from being resold for profit
//DO NOT CHANGE LINES UNLESS INSTRUCTED

function goto_URL(object) {
    window.location.href = object.options[object.selectedIndex].value;
}


//IMG SRC URL should point to the absolute URL of the dropdown graphic
//The HREF tag should show where clicking on the image should take you, 
//usually to a sign-up spot
document.writeln('<FORM><SELECT NAME="selectName" onChange="goto_URL(this.form.selectName)">');

//If nothing is inside the quotes, the text is not a link
//If there is a meta-character included in the name, precede the character 
//with a backslach "\" to keep it from interfering with the script
//add new lines as needed, based on these


document.write('<OPTION VALUE="#">Staff Sites<\/OPTION>');
document.write('<OPTION VALUE="#">------<\/OPTION>');
document.write('<OPTION VALUE="index.shtml">Back to Home<\/OPTION>');
document.write('<OPTION VALUE="http://teacherweb.com/CA/FoothillHighSchool/Adams/">Ms. Adams<\/OPTION>');
document.write('<OPTION VALUE="http://foothilltech.org/kcole/">Mrs. Akl<\/OPTION>');
document.write('<OPTION VALUE="http://foothilltech.org/mshibuya/">Mrs. Anderson<\/OPTION>');
document.write('<OPTION VALUE="http://foothilltech.org/bclancy/">Art 1,2,3,4<\/OPTION>');
document.write('<OPTION VALUE="http://www.foothilltech.org/ccarr/asb">ASB/Leadership<\/OPTION>');
document.write('<OPTION VALUE="http://web.mac.com/wendi.butler">Mrs. Butler<\/OPTION>');
document.write('<OPTION VALUE="http://foothilltech.org/ccarr">Mrs. Carr<\/OPTION>');
document.write('<OPTION VALUE="http://fthscounselors.wetpaint.com/">Counselors<\/OPTION>');
document.write('<OPTION VALUE="http://foothilltech.org/ccrouch/">Mr. Crouch<\/OPTION>');
document.write('<OPTION VALUE="http://foothilltech.org/jdinkler/">Mr. Josh Dinkler<\/OPTION>');
document.write('<OPTION VALUE="http://foothilltech.org/jasondinkler">Mr. Jason Dinkler<\/OPTION>');
document.write('<OPTION VALUE="http://foothilltech.org/wdowler">Miss Dowler<\/OPTION>');
document.write('<OPTION VALUE="http://www.thefoothilldragon.org">Dragon Press<\/OPTION>');
document.write('<OPTION VALUE="http://foothilltech.org/rduston">Mr. Duston<\/OPTION>');
document.write('<OPTION VALUE="http://foothilltech.org/ceulau">Ms. Eulau<\/OPTION>');
document.write('<OPTION VALUE="http://foothilltech.org/kpelfrey">Mrs. Faulconer<\/OPTION>');
document.write('<OPTION VALUE="http://foothilltech.org/hferris/">Ms. Ferris<\/OPTION>');
document.write('<OPTION VALUE="http://web.me.com/catgaspard">Mrs. Gaspard<\/OPTION>');
document.write('<OPTION VALUE="http://foothilltech.org/rgeib">Mr. Geib<\/OPTION>');
document.write('<OPTION VALUE="http://web.me.com/robinhoulahan/Ms._Houlahans_Website/Home.html">Ms. Houlahan<\/OPTION>');
document.write('<OPTION VALUE="http://foothilltech.org/whuffman">Mr. Huffman<\/OPTION>');
document.write('<OPTION VALUE="http://www.quia.com/pages/ehunt98/page2">Mrs. Hunt-Chemistry<\/OPTION>');
document.write('<OPTION VALUE="http://www.quia.com/pages/ehunt98/page1">Mrs. Hunt-Con Physics<\/OPTION>');
document.write('<OPTION VALUE="http://www.fthsmediacenter.wetpaint.com">Mrs. Kapala<\/OPTION>');
document.write('<OPTION VALUE="http://foothilltech.org/kspencer">Mr. Kellogg<\/OPTION>');
document.write('<OPTION VALUE="http://foothilltech.org/jkindred">Mrs. Kindred<\/OPTION>');
document.write('<OPTION VALUE="http://foothilltech.org/kleaf">Se&ntilde;ora Leaf<\/OPTION>');
document.write('<OPTION VALUE="http://foothilltech.org/mlindsey">Captain Lindsey<\/OPTION>');
document.write('<OPTION VALUE="http://fthswiki.org">NHS - see WIKI<\/OPTION>');
document.write('<OPTION VALUE="http://foothilltech.org/dperez">Miss Perez<\/OPTION>');
document.write('<OPTION VALUE="pfsomain.shtml">PFSO<\/OPTION>');
document.write('<OPTION VALUE="http://foothilltech.org/kpowers">Ms. Powers<\/OPTION>');
document.write('<OPTION VALUE="http://www.foothilltech.org/estevens/index.htm">Physical Ed<\/OPTION>');
document.write('<OPTION VALUE="http://foothilltech.org/cprewitt">Mr. Prewitt<\/OPTION>');
document.write('<OPTION VALUE="http://fthswiki.org">Miss Rocca - see WIKI<\/OPTION>');
document.write('<OPTION VALUE="http://foothilltech.org/estevens">Mrs. Stevens<\/OPTION>');
document.write('<OPTION VALUE="http://foothilltech.org/avilla">Mr. Villa<\/OPTION>');
document.write('<OPTION VALUE="http://foothilltech.org/rvillano">Mr. Villano<\/OPTION>');
document.write('<OPTION VALUE="http://web.mac.com/wantzm/Wantz_i107/Home.html">Mrs. Wantz<\/OPTION>');
document.write('<OPTION VALUE="http://fthswiki.org">Mr. Weldele - see WIKI<\/OPTION>');
document.write('<OPTION VALUE="#">------<\/OPTION>');
document.writeln('<\/SELECT><\/FORM>');