$(document).ready(function(){
    
    function hideresults(){
	
        $(".result").hide();
    }
    $("#sectiBtn").click(function(){
      if($("#vyska").val() && $("#vaha").val()){
        hideresults();
        var vaha = $("#vaha").val();
        var vyska = ($("#vyska").val()/100);
        var result = vaha / (vyska * vyska);
        if(result < 19){
         $("#19").show('slow');
        }
        if(result >= 19 && result < 25){
          $("#25").show('slow');
        }
        if(result >= 25 && result < 30){
          $("#30").show('slow');
        }
        if(result >= 30 && result < 35){
          $("#35").show('slow');
        }
        if(result >= 35 && result < 40){
          $("#40").show('slow');
        }
        if(result >= 40){
        
          $("#45").show('slow');
        }
      }
      $("#vysledek").html("<div id=\"res\">Vámi zadané údaje jsou: "+vaha+"kg, "+(vyska*100)+"cm coľ znamená BMI "+Math.round(result)+".</div>");
      return false;
    });
    $("h3").click(function(){
        var cl = "#"+$(this).attr("class");
        $(cl).toggle(500);
    });
    
});
