//jump menu 

function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

document.write('<select name="select" onChange="MM_jumpMenu(\'parent\',this,0)">');
document.write('<option selected="selected" value="#">-- Please choose --</option>');
document.write('<option value="#"></option>');
document.write('<option value="06.html">6th - Synthetics - the human made fiber</option>');
document.write('<option value="05.html">5th - Warm materials part two - the power of science</option>');
document.write('<option value="04.html">4th - Warm materials cashmere, alpaca, Angora</option>');
document.write('<option value="03.html">3rd - Silk the object of infatuation</option>');
document.write('<option value="02.html">2nd - The secret of wool</option>');
document.write('<option value="01.html">1st - What is cotton?</option>');
document.write('</select>');

