// JavaScript Document

$(function(){
		   	   $("a.redacao").click(function ()
										{ 
										$("#redac"+$(this).attr("id")).show();
										})	  
		   })
		   
$(function(){
		   	   $(".fechar").click(function ()
										{ 
										$(this).parent().fadeOut(500);
										
										})	  
		   })
$(function(){
		   	   $(".redac_box").click(function ()
										{ 
										$(this).fadeOut(500);
										
										})	  
		   })
		   

