$(document).ready(function() {
	$("a, li").hover(function () {
		$(this).addClass("hover");
	  },
	function () {
		$(this).removeClass("hover");
	});
	$(".widget_rrm_popular_posts li").bind('click', function(e) {
		window.location.href = $("a", this).attr('href');
	});
	$(".widget_button a").prepend("&rsaquo; ");
	$(".widget_button + .widget_button").css({'margin-top': '-5px'});
	$("#body > .right li a").prepend("&raquo; ");
	$("#crp_related li").prepend("&raquo; ");
	
	//$("span.report").remove().appendTo($(this).parents(".ctext").next(".reply"));
	$(".commentdiv .report").each(function(i, e) {
		if((reply = $(this).parents('.commentdiv').find(".reply")) && reply.length)
		{
			if((replink = reply.find('a.comment-reply-link')) && replink.length)
				$(replink).after($(this).remove().children());
			else
				$(reply).append($(this).remove().children());
		}
	});
});