$(document).ready(function() { 
  
  $(".round").corner("round 6px");

  $(".round_not_on_top").corner("bottom 6px");

})



function show_results() {
  
  if ($("#questions_form").valid()) {
    $(".hidden_result").show()    
    $("#amount_participants").show()
    $("#show_results_button").hide()    
    
  } else{
    alert("Bevor Sie die Ergebnisse sehen können, sollten Sie für jede Droge eine Angabe machen.")
  };
  

}