//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 - Post war - the advancement of the sock - Final section -</option>');
document.write('<option value="05.html">5th - Meiji Restoration - the resurgence of the sock</option>');
document.write('<option value="04.html">4th - Edo Merchant Culture -the arrival of cotton split toe socks to the masses</option>');
document.write('<option value="03.html">3rd - Portuguese and Spanish Culture -the origins of the present day sock</option>');
document.write('<option value="02.html">2nd - Socks - following its roots from the tabi</option>');
document.write('<option value="01.html">1st - Socks - following its roots from the shitouzu</option>');
document.write('<option value="#">- - - - - - - - - - - - - - - - - - - - - - - - </option>');
document.write('<option value="index.html">Top page</option>');
document.write('</select>');

