$(document).ready(function()
{
	$('.delete_resource').click(function()
	{
		return confirm('Delete this resource?');
	});
	$('.delete_event').click(function()
	{
		return confirm('Delete this event?');
	});
	$('.delete_media').click(function()
	{
		return confirm('Delete this media?');
	});
});
