$(function() {
	$('.confirm').click(
		function (event)
		{
			event.preventDefault();
			if (confirm($(this).attr('title')))
				location.href=$(this).attr('href');
		}

	);
});