$(document).ready(function() {

  $('#album').change(function() {  
    $.getJSON("./include/ajax_rating_data.php",{'id': $(this).val(), 'contest': $('#contest_id').val(), 'type': 'albummedia'}, function(j){
        var options = '';
        for (var i = 0; i < j.length; i++) {
          options += '<option value="' + j[i].optionValue + '">' + j[i].optionDisplay + '</option>';
        }       
        $("#artwork").html(options);
        $("#artwork").change();
    })

  })
  .change();
  
  $('#artwork').change(function() {
    $.getJSON("./include/ajax_rating_data.php",{'mediaid': $(this).val(), 'type': 'preview'}, function(j){
        var preview = "<img border='0' src='" + j + "' />";
        $("#preview").html(preview);
    })
    if ($(this).val() == 'none')
    {
        $('#button > input').hide();
    }
    else
    {
        $('#button > input').show();
    }
  })
  
  
  $('#rating_type').change(function() {
    if ($(this).val() == 'jury')
    {
        $('#jury').show()
    }
    else
    {
        $('#jury').hide()
    }
  })
  .change();

});