jQuery(document).ready(function(){
  	jQuery("#btnContato").click(function(){
	   jQuery('#contato').slideToggle('fast');
	});
	
	jQuery("#btnFechar").click(function(){
	   jQuery('#contato').slideToggle('fast');
	});
	
});
