$(document).ready(function(){
    $('.zf_image').each(function() {
    	var field = $(this).next().get(0).name;
        var append = window.location.href.charAt(window.location.href.length - 1) == '/' ? 'field/' : '/field/';
        $(this).append(' &nbsp; &nbsp; <a href="' + window.location.href.replace('modify', 'delete_image') + append + field + '/">удалить</a>');
        
	});
    
    $(':input[type=checkbox].all_checker').click(function () {
        var name = this.id.split('_all')[0] + '[]';
        $(':input[name=' + name + ']').attr('checked', this.checked);
    });
});
