function ajax_update(){
var wrapperId = '#playing';
var postFile = 'playing.php';
$.post(postFile,function(data) { $(wrapperId).html(data);});
setTimeout('ajax_update()', 10000);
}
ajax_update();

