<div class="top100">
<div class="content"></div>
</div>
$(function() {
$(".content").load(url, function() {
$(".top100").jScrollPane();
});
});
$.ajax({
type: 'get',
url: 'http://www.radiorecord.ru/xml/top100/ps.txt',
success: function(html) {
$(".top100").html(html).jScrollPane();
}
});