// JavaScript Document
$(document).ready(function () {
  $("#js_compliant").show();
  $("#no_js").hide();
  
  $("#yearSel").change(function () {
    if ($(this).val() == '')
      return;
    
    $("#numberSel").attr("disabled", true)
      .empty().append("<option>Choose number...</option>");
    $("a", "#volume_"+this.value).each(function () {
      $("<option value='"+$(this).attr("href")+"'></option>")
        .html($(this).attr("title")).appendTo("#numberSel");
      $("#numberSel").removeAttr("disabled");
      });
    });
  
  $("#numberSel").change(function () {
    if ($(this).val())
      document.location = $(this).val();
    });
  });
  
