$(document).ready(function(){
	   $("#mapa").hide();
	   $("a#sitemap").toggle(function(){
	     $("#mapa").animate({ height: 'show', opacity: 'show' }, 'slow');
	   },function(){
	     $("#mapa").animate({ height: 'hide', opacity: 'hide' }, 'slow');
	   });
	 });