$(document).ready(function(){
	
	$('#mural-flutuante').hide();
	$('#botao_mural').show(); 
	
	$("#mural-fecha").click(function() {
		$('#mural-flutuante').hide('slow');
		$('#botao_mural').show('slow'); 
		return false;
	});
	
	$("#botao-mural-fecha").click(function() {
		$('#botao_mural').hide('slow');
		$('#mural-flutuante').show('slow'); 
		
		var total = $('#mural_recados li').length;
	
		$('#mural_recados li').hide();
		$('#mural_recados li:nth-child(1)').fadeIn('slow').show(); 
		cont = 2;
		
		setInterval(function(){
			
			$('#mural_recados li').hide();
			$('#mural_recados li:nth-child('+ (cont) +')').fadeIn('slow').show(); 
			cont++;
			if(cont == (total + 1)){cont = 1;}
		},10000);
		
		return false;
	});

	   
});
