$(function() {
	$('.boxy-confirm').click(function() {
		var link=this;
		Boxy.confirm("You are about to delete this item permanently. Are you sure?", function() { 
			location.href = $(link).attr('href');
		}, {title: 'Please Confirm'});
		return false;
	});
});
