// JavaScript Document
$(document).ready (function () {
	$('.deleteLink').click(function()
	{
		return confirm('You are about to delete this entry. Once you delete it, the action cannot be undone.');
	});
});