$(document).ready(function(){
show();
$('#btn1').click(function(){
$.ajax({
url: "block.php",
cache: false,
success: function(html){
$("#content").html(html);
}
});
});
});
$('#btn1').click(function(){
$.ajax({
url: "block.php",
cache: false,
success: function(html){
setTimeout( function(){
$("#content").html(html);
}, 5000 );
}
});
});
});