$(document).ready(function() {
  
  $("a[rel]").overlay({
    mask: {
      color: '#222',
      opacity: 0.8
    },
    top: 'center'
  });
  
  $("#what-choice").change(function(){
    $.post('/manuals/subcategory1', $("#manualform").serialize(), function(data){
      $("#what-choice2").html(data).removeAttr("disabled");
    });
  });
  
  $("#what-choice2").change(function(){
    $.post('/manuals/subcategory2', $("#manualform").serialize(), function(data){
      $("#what-choice3").html(data).removeAttr("disabled");
    });
  });
  
  $("#what-choice3").change(function(){
    $.post('/manuals/file', $("#manualform").serialize(), function(data){
      $("#manual-list").html(data);
    });
  });
});
