<script>
function show()
{
$.ajax({
url: "get_b.php",
cache: false,
success: function(html){
$("#contentq").html(html);
}
});
}
$(document).ready(function(){
show();
setInterval('show()',7000);
});
</script>