//changes window location depending on which item is selected from drop down
function goTo(){
window.location=document.raymarkform.raymarkselect.options[document.raymarkform.raymarkselect.selectedIndex].value;
}
// dropdown navigation for stormwater techs
document.write('' +
'			<form name="raymarkform" style="margin-bottom:15px;">' +
'       		<select name="raymarkselect" size="1" class="jdstyle">' +
'          	<option value="index.html" selected>- Raymark Site Navigation - </option>' +
'         	<option value="reports.html">Reports</option>' +
'         	<option value="photos.html">Photos</option>' +
'          	<option value="bulletins.html">Bulletins</option>' +
'          	<option value="index.html">Raymark Fact Sheet</option>' +
'        	</select>' +
'			<input value="Go" type="button" style="padding:0; padding-bottom:1px; height:21px;" onclick="goTo();">' +
'     		</form>');
