$(document).ready(function() {
	$("a.raporteaza").each(function(){
	  this.href = "#"+this.href.split("#")[1];
	});

	$("a.raporteaza").one("click", function(){
		var id = this.href;
		var id = id.split("#")[1];
		$(this).toggleClass("cwrong");
		$(this).fadeOut();
		$.post("/raporteaza_comentariu.php", { id: id , jsworks:"yes"},
			function(data)
				{ eval(data); }
			   );

		return false;
	});

});
