$(function () {
	$(".lcomment:odd").addClass("even");
	$(".lcomment").hover(function(){ $(this).addClass("hover");},function(){$(this).removeClass("hover");});
	$('.lcomment').click(function(){window.location=$(this).find("a").attr("href"); return false;});
	});
