
$(document).ready(function() {

	$('.tx-communityreportuser-link a').click(function(e) {
	  id = this.id.split("_");
	  $('#tx-communityreportuser-reported-user')[0].value=id[1];
		$("#tx-communityreportuser-dialog").dialog('open');
		return false;
	});
	
	$("#tx-communityreportuser-dialog").dialog({ 
		modal: true, 
		autoOpen: false,
		draggable: false,
		resizable: false,
		width: 600,
		height: 400,
		overlay: { 
			opacity: 0.5, 
			background: "black" 
		},
		dialogClass: 'tx-communityreportuser-dialog'
	});
	
	$("#tx-communityreportuser-dialog form").ajaxForm({
		success: function(response) {
			$('#tx-communityreportuser-dialog').empty().append(response);
		}
	});
});

