function NavMenu() {
document.write('<form name="navigate">');
document.write('<select name="select" onChange="location.href=this.form.select.options[this.form.select.selectedIndex].value">');
document.write('<option selected>Quick Navigation</option>');
document.write('<option>----------------</option>');

//--------------------------------------------//
// [NAVIGATION QUICK LINKS BELOW]
//--------------------------------------------//
// COPY THE NEXT LINE, PASTE AND EDIT TO CREATE NEW MENU LINKS

document.write('<option value="index.html">Home Page</option>');
document.write('<option value="background.html">Background</option>');
document.write('<option value="whos_who.html">Who&#8217;s Who</option>');
document.write('<option value="resources.html">Related Yale Resources</option>');
document.write('<option value="org_links.html">Links to Organizations</option>');
document.write('<option value="pub_links.html">Links to Publications</option>');
document.write('<option value="events.html">Upcoming Events</option>');
document.write('<option value="groups.html">Working and Dialogue Groups</option>');
document.write('<option>----------------</option>');
document.write('<option value="http://www.yale.edu/divinity/index.html">YDS Home Page</option>');
document.write('<option value="http://www.yale.edu/">Yale Home Page</option>');




document.write('</select>');
document.write('</form>');
}