// JavaScript Document
jQuery(document).ready(function() {
	
	jQuery('#pportugal').find('dd').hide().end().find('dt').click(function() {
         var resposta = $(this).next();
         if (resposta.is(':visible')) {
             resposta.slideUp();
         } else {
             resposta.slideDown();
         }
     });
	
});


jQuery(document).ready(function() {
	
	jQuery('#menu').find('#assuntos_quentes').click(function() {
	//jQuery('#menu').find('sub').hide().end().find('li').click(function() {
         //var resposta = $(this).next();
		 var resposta = $("sub");
		 if (resposta.is(':visible')) {
             resposta.slideUp();
         } else {
             resposta.slideDown();
         }
     });
	
});