$(document).ready(function(){
	$("span.report").click(
		function () { 
			var id = $(this).attr("value");
			var type= $(this).attr("name");
			$.getJSON('/blog/js/json_report.php?type='+type+'&id='+id, function(json) {
				if(json[0]['reporting']){
					if(type == 'entry'){
						$('span.report_e'+id).removeClass('report');
						$('span.report_e'+id).addClass('reported');
					}
					if(type == 'comment'){
						$('span.report_c'+id).removeClass('report');
						$('span.report_c'+id).addClass('reported');
					}
				}
			});
		}
	);
});

document.write('<style type="text/css">.reported{margin-left:20px; width:30px; height:30px; cursor:pointer; margin-bottom:0px; margin-top:20px; height:30px; float:right; background-image:url(/images/icons/reported.png);}.report{margin-left:0px; width:30px; height:30px; cursor:pointer; margin-bottom:0px; margin-top:20px; height:30px; float:right; background-image:url(/images/icons/reporting.png);}.report:hover{background-image:url(/images/icons/reported.png);}</style>');