$(document).ready(function(){

	$('#panel1').show();
	$('#panel2').hide();
	$('#panel3').hide();

	$('#confirm').click( function () { confirm(); });
});

var count=60;

function confirm () {

	$("#panel1").hide();
	$("#panel2").show();
	$("#panel3").hide();

	$.ajax({
		url: '/unlock.php',     	// podajemy URL i
    	dataType : "html",  // typ ladowanych danych
    	success: function (data, textStatus) { sukcess (data, textStatus); }
	});
}

function sukcess (data, textStatus) {

	$('#counter').everyTime(1000, function(i) {
  		$('#counter').html(count--);
  		if ( count < 0 ) {
 		 	$('#panel1').hide();
			$('#panel2').hide();
			$('#panel3').show();
  		}
  		});
}

