$(document).ready(function() {
	$('td').autoHover();
	//$("ul.checkbox").hideChecks();
	$("a.confirm").confirmDialog(
		function (item, json)
		{ 
			if (json.status==1){
				item.parents(".item:first").fadeOut("slow");
			}else{
				$(this).msgDialog(json);
			}
		}
	);
	
	$(":radio[name=tipo]").click(function (){
			($(this).val() == "a") ? $("#orgao").parent("p:first").hide("slow") : $("#orgao").parent("p:first").show("slow");
	});
	
	$(".revisar :radio[name=op]").click(function (){
			($(this).val() == "s") ? $(this).parents("form:first").find(".mot").slideUp("slow") : $(this).parents("form:first").find(".mot").slideDown("slow");
	});
	
	$(".revisar .mot").hide();
	
	$('form.rating').starRate();
		
	window.setTimeout("$('div#mensagem:not(.duvida)').fadeOut(\"slow\")", 10000);
});
