function imgCrop(img, selection)
{
	// загрузка...
	$('#result')
		.html('<img src="./images/ajax-loader.gif" alt="ajax" />')
		.css({display: "block"});
	
	// отправляем данные
	$.post(
		'./backend/index.php',
		{
			w: selection.width,
			h: selection.height,
			x: selection.x1,
			y: selection.y1,
			i: $('#workspace > img').attr('src')
		},
		function(txt){
			$('#result').html(txt);
		},
		'text'
	);
}

// инициализируем плагин imgAreaSelect
$(window).load(function () {
    $('#image').imgAreaSelect({
        movable: true,
        resizable: true,
        onSelectEnd: imgCrop
    });
});
