// BCC Lib
$(function(){
	// Overlays
	$("a.fancybox").fancybox({
		'type' : 'ajax',
		'width' : 800,
		'height' : 600
	});
	
	$("a.fancybox-frame").fancybox({
		'type' : 'iframe',
		'width' : 1024,
		'height' : 768
	});

	$("a.fancybox-inline").fancybox({
		'hideOnContentClick': true,
		'titlePosition' : 'inside',
		'titleFormat' : formatTitle
	});
	
	
});

function formatTitle(title, currentArray, currentIndex, currentOpts) {
    return '<div class="overlay-title">' + title + '</div>';
}


function load_crop(id)
{
	var cct = $.cookie('csrf_test_name');
	var image_path = $('#' + id).val();
	$.fancybox.showActivity();
	$.ajax({
		type	: "POST",
		cache	: false,
		url		: "/admin/files/crop/",
		data	: 'image=' + image_path + '&image_id=' + id + '&csrf_test_name=' + cct,
		success: function(data) {
			$.fancybox({'content' : data, 'width':1024, 'height':768, 'type':'inline', 'autoDimensions':false});
		}
	});

}
