comments_big=false;
function loadPlayer(el) { 
	AudioPlayer.load('voices', el.alt, '');
	AudioPlayer.open('voices');
}

function getComments(el) { 
		div = $(el).prev();
		$(el).remove();
		div.append(' <img src="/images/icons/loading_white.gif" class="loading" />');
		
		add='';
		if(comments_big) {
			add = '/big/true';
		}
		$.get('/message/comments/mid/'+el.id +'/page/'+el.rel+add+'', '', function(data) {
			div.append(data); 
			$('.loading').remove();
			$(".more-comments").click(function() {getComments(this);});
			$(".play-control").click(function () {loadPlayer(this);});
		});
	}
$(document).ready(function(){

	$(".play-control").click(function () {loadPlayer(this);});

	$(".more-comments").click(function() {getComments(this);});
});