// 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.');
	});
});
$(document).ready (function () {
	$('.deleteSection').click(function()
	{
		return confirm('You are about to delete this section. All pages within this section will be deleted.');
	});
});
