jQuery(document).ready(function() 
{
	$("a.alert_title").click(function() {
		alert($(this).attr("title"));
		return false;
	});
	
	$("a.delete_comment").click(function() {
		var Answer = confirm("Are you sure you want to delete this comment?");
		if (!Answer)
		{
			return false;
		}
	});
});


