if ($('#remaining_credits').length) {
	if ($('#remaining_credits').html() == 0) {
		$("input[type='checkbox']:not(:checked)").attr('disabled', true);
	}
}

$("input[type='checkbox']").custCheckBox({
	callback: function() {
		var id = $(this).nextAll("input:first").val();
		var checked = $(this).nextAll("input:first").attr("checked");
		
		var vars = 'id='+id+'&checked='+checked;
		
		$("input[type='checkbox']").attr('disabled', true);
		
		$.ajax({
			url: 'scripts/search-to-fetch.php', 
			type: 'POST', 
			data: vars, 
			dataType: 'text', 
			success: function(txt) {
				$("input[type='checkbox']").attr('disabled', false);
				$('#remaining_credits').html(txt);
				
				if (txt == 0) {
					$("input[type='checkbox']:not(:checked)").attr('disabled', true);
				}else{
					$("input[type='checkbox']").attr('disabled', false);
				}
			}
		});
	}
});
