// Place and comment any function in here.
$(document).ready(function() {
	//menu
	$('#coolMenu').find('> li').hover(function(){
		$(this).find('ul')
		.removeClass('noJS')
		.stop(true, true).slideToggle('fast');
	}); //menu
	
	//grupo
	$('.grupo h3').click(function(){
		$(this).toggleClass('open')
		.next('.regiao')
		.stop(true, true).slideToggle('fast');
	}); //grupo
	
	//count
	$('.grupo h3').each(function(){
		var $this  = $(this) 
			$count = $this.next('.regiao').find('em').length;
		$this.append('<span>' + $count + '</span>');
	}); //count
	
}); //ready
