<!-- MENU


document.write('<form action="#" method="post" class="formmargin">');
document.write('<select name="choice" size="10" onChange="jump(this.form)" class="dropmenu">');
document.write('<option value="">Scroll Menu -----------------------------&gt;&gt;</option>');

document.write('<optgroup label="Select By Genre" class="selection">');

document.write('<option value="mp3-ambient.html">Ambient</option>');
document.write('<option value="mp3-drama.html">Drama</option>');
document.write('<option value="mp3-jazz.html">Jazz</option>');
document.write('<option value="mp3-mix.html">Mix</option>');
document.write('<option value="mp3-rock.html">Rock</option>');
document.write('<option value="mp3-website.html">Website Songs</option>');

document.write('</optgroup>');
document.write('<optgroup label="Select By Instrument" class="selection">');

document.write('<option value="mp3-piano.html">Piano</option>');
document.write('<option value="mp3-guitar.html">Guitar</option>');
document.write('<option value="mp3-bass.html">Bass</option>');

document.write('</optgroup>');
document.write('<optgroup label="About the Mp3s" class="selection">');

document.write('<option value="music-artists.html">The Artists</option>');

document.write('<option value="http://square-peach.com">Home</option>');

document.write('</optgroup>');
document.write('<optgroup label="">');
document.write('</optgroup>');

document.write('</select>');
document.write('</form>');


// End -->