//changes window location depending on which item is selected from drop down
function goTo(){
window.location=document.beedeform.beedeselect.options[document.beedeform.beedeselect.selectedIndex].value;
}
// dropdown navigation for stormwater techs
document.write('' +
'			<form name="beedeform" style="margin-bottom:10px;">' +
'       		<select name="beedeselect" size="1" class="jdstyle">' +
'          	<option value="index.html">- Beede Waste Oil Site Navigation - </option>' +
'          	<option value="index.html">Beede Waste Oil Home</option>' +
'         	<option value="contaminants.html">Primary Contaminants at the Site</option>' +
'         	<option value="status_cleanup_approach.html">Status &amp; Cleanup Approach</option>' +
'         	<option value="history_response.html">History &amp; Response Actions</option>' +
'          	<option value="documents.html">Documents</option>' +
'          	<option value="news.html">Newsletters &amp; Press</option>' +
'          	<option value="photos.html">Photos</option>' +
'          	<option value="http://yosemite.epa.gov/r1/npl_pad.nsf/f52fa5c31fa8f5c885256adc0050b631/A86FF0EB3E08590F852568FF005ADB11?OpenDocument#contacts">Contacts</option>' +
'          	<option value="enfdocs.html">Enforcement &amp; Liable Parties</option>' +
'          	<option value="links.html">Links</option>' +
'        	</select>' +
'			<input value="Go" type="button" style="padding:0; padding-bottom:1px; height:21px;" onclick="goTo();">' +
'     		</form>');
