var myCropper;

window.addEvent('load', function(){
	myCropper = new ByCropper(null, null, {
		borderPath: '/assets/img/interface'
	});
	
	myCropperCustom = new ByCropper('bycropper_custom', null, {
		borderPath: '/assets/img/interface',
		minWidth: 190,
		maxWidth: 380,
		minHeight: 110,
		maxHeight: 220,
		maskColor: "#203060",
		maskOpacity: 0.96
	});
});