$(document).ready(function() {
    refresh();
});

function refresh() {
    $.get('/twitter/refresh/', function(data) {
        $('p.twit').remove();
        $('#programs').append(data);
        setTimeout('refresh', 300000);
    });
}
