var topsyOtterapi = 'http://otter.topsy.com/trackbacks.js';
function twitterTrackbackList(post)
{
	var tweetHtml = '';

	jQuery.ajax({
		type: 'GET',
		url: topsyOtterapi,
    	cache: false,
		dataType: 'jsonp',
		data: {
			perpage: '100',
			order: 'date',
			url: post.url
		},
		success: function(trackbackData)
		{
			tweetHtml += (
			)
			if(trackbackData.response.list.length == 0) {
				tweetHtml += ('');
			} else {
				jQuery.each(trackbackData.response.list, function(n)
				{
					tweetHtml += (
						'<li class="tweet' + n + '">' +
							'<a href="' + this.author.url + '"><img src="' + this.author.photo_url + '" alt="' + this.author.name + '" width="48" /></a>' +
						'</li>'
					);
				});
			}
			jQuery(post.id).append('<ul>' + tweetHtml + '</ul>');
		},
		complete: function() {
		}
	});
}

