$(document).ready(function(){

	 $(".form-product #qty").change(function () {
	 	  var price = $("input[name=price]").val();
		  var count = $(this).val();
		  
		  if (count <= 0) {
		  	count = 1;
			$(this).val(count);
		  }
		  else if(count > 100) {
		  	count = 100;
			$(this).val(count);
		  }
		  
		  
		  var sum = price * count;
		  
	
          $(".price").text(sum.toFixed(2) + ' zł');
        }),
	 
	 $('.form #qty').change(function () {
	 	  var price = $("input[name=price]").val();
		  var count = $(this).val();
		  
		  if (count <= 0) {
		  	count = 1;
			$(this).val(count);
		  }
		  else if(count > 100) {
		  	count = 100;
			$(this).val(count);
		  }
		  
		  
		  var sum = price * count;
		  
          //$(".total").text(sum.toFixed(2) + ' zł');
		  
			  
		  $.ajax({
			method: "get",
			url: "koszyk.html",
			data: "pid=1&qty="+count,

			beforeSend: function(){ $(".total").html('<img src="images/loader.gif" style="margin: 0; padding: 0px;" />');},

			//complete: function(){ $(".total").hide("fast");}, //stop showing loading when the process is complete

			success: function(res){
				//$(".total").show("slow");
				$(".total").text(res + ' zł'); //show the html inside .content div
			}

			});
		 })
});
