
$(function(){
	if($("#cropbox").length > 0) {
		$('#cropbox').Jcrop({
			aspectRatio: 1,
			onSelect: updateCoords,
			//setSelect: [ 0, 0, 300, 300 ],
			minSize: [ 300, 300 ]
		});
	} 
});

function updateCoords(c)
{
	$('#x').val(c.x);
	$('#y').val(c.y);
	$('#w').val(c.w);
	$('#h').val(c.h);
	if(c.w < 300 || c.h < 300) {
		$.jGrowl("Lors du redimensionnement, l'image doit faire plus de 300px de largeur !",
			{sticky: false, header: "Attention"}
		);
		$("#bttn_redim").attr('disabled', 'disabled');
	}
	else {
		$("#bttn_redim").removeAttr('disabled');
	}
};

function checkCoords()
{
	if (parseInt($('#x').val())) return true;
	alert('Selectionnez d\'abord une région de la photo avant de continuer.');
	return false;
};
