//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="01.html">1st - How the socks are made</option>');
document.write('</select>');

