// JavaScript Document


$(document).ready(function(){
	$("#ico-upload").fancybox(
	{
		'type':'iframe',
		'height': 515,
		'width':440,
		'href':'crop.php',
		'titleShow':false,
		'showCloseButton':true,
		'hideOnOverlayClick':false
	});
	$("#fancybox-outer").css("background-color", "#7a7986");
	
	$("#fancybox-close").click(function(){
		parent.closeCropForm();
	});	

	//$("#bt-upload").trigger("click");	
	//jQuery('#example-default').click(function() { var that = jQuery(this).busy({img: "_images/busy.gif"})}); 
	
	function checkCoords()
		{
			if (parseInt($('#w').val())) return true;
			alert('Please select a crop region then press submit.');
			return false;
		}
		
});

