$(document).ready(function() {
	$('#tx_references_filter input').each(function(){$(this).click(function(){sendFilterData();});});
});

function sendFilterData() {
	var data = Array();
	$('#tx_references_filter input').each(function() {
		if ($(this).is(':checked')) {
			data.push( $(this).val() );
		}
	});
	$.ajax({
   		type: "POST",
   		url: window.location.href,
		data: {
			'no_cache': 1,
			'tx_references[action]': 'list',
			'tx_references[filter][]' : data
		},
		dataType: "html",
		success: function(msg){
			$(".tx_references_list").html(msg);
		}
	});
}

