jQuery.fn.extend({
	opiniao: function(destination) {
		return this.each(function(i){
			$(this).attr("disabled","");
			$(this).click(function(){
				var id = $(this).attr("name");
				var tipo = $(this).attr("title");
				$.getJSON(destination, {Rating_TipoID:id, Rating:$(this).val(), Rating_Tipo:tipo, ajax:'true'}, 
					function(j){
						var text = j;
						if(j.url != undefined) top.location.href=j.url;
						if(j.text != undefined    ) text = j.text;
						$("div#mensagemdica"+id).html(text);
						//$("input:radio[@name="+id+"]").attr("disabled","disabled");
					}
				)			
			});
		});
	}
});
