
$(document).ready(function() {
	$("#assunto-sel").change(function(){
		var target = $(this).val();
		if (target >= 0) {
			$("li.assuntos").show();
			$(".assuntos li:visible").not(".ass"+target).hide();
			$(".assuntos li.ass"+target).show();
		} else {
			$(".assuntos li, li.assuntos").hide();
		}
	});
	
	$("div#box_cont dl:first").css("border-top","none");
});
