/**
 * @author Novalis
 */
	jQuery(document).ready(function(){
		jQuery('#cropbox').Jcrop({
			onChange: showCoords,
			onChange: showPreview,
			onSelect: showCoords,
			aspectRatio: 1
		});
		function checkCoords(){
			if (parseInt(jQuery('#w').val())>0) return true;
				alert('Bitte einen Bereich auswaehlen');
			return false;
		};
		function showCoords(c){
			jQuery('#x').val(c.x);
			jQuery('#y').val(c.y);
			jQuery('#x2').val(c.x2);
			jQuery('#y2').val(c.y2);
			jQuery('#w').val(c.w);
			jQuery('#h').val(c.h);
		};
		function showPreview(coords){
			var hoehe = document.getElementById("cropbox").height
			var breite = document.getElementById("cropbox").width
		if (parseInt(coords.w) > 0){
			var rx = 100 / coords.w;
			var ry = 100 / coords.h;
				$('#preview').css({
					width: Math.round(rx * breite) + 'px',
					height: Math.round(ry * hoehe) + 'px',
					marginLeft: '-' + Math.round(rx * coords.x) + 'px',
					marginTop: '-' + Math.round(ry * coords.y) + 'px'
				});
			}
		};
	});
