function show()
{
$.ajax({
dataType: 'json',
url: "info.php",
ifModified: true,
cache: false,
success: function(jsondata){
$("#queue").css("display", "none");
$("#queue").html(jsondata.queue);
$("#queue").fadeIn(500);
}
});
}
$(document).ready(function(){
show();
setInterval('show()', 3000);
});