$(document).ready(function(){
	
	$(".blog.landing #authorlist .detail").hover(function(){
		$(this).addClass("hover");
	},
	function(){
		$(this).removeClass("hover");
	});
	
	$(".delete").click(function(){
		if (!confirm("Are you sure you want to delete this comment?")) return false;
	});
	
});