| 
		
			Сообщение от hrustbb
			
		
	 | 
	| 
		this.container.jcrop_api = $.Jcrop(this);
	 | 
	
Вероятно ошибка возникает здесь. Так как this указывает не на img (jQuery-объект), а на DOM-элемент.
Вариант:
var container = this;
this.img.load(function(){
    container.jcrop_api = $.Jcrop(this);
});