function animar(objeto){
	$.ajax({
		type: "GET",
		url: "sitemap.html",
		success: function(datos){
			$("#idmapa").html(datos);
	      $(objeto)
			.animate({ 
	        opacity: '1',
			right:'-2px',
			height: '494px',
			width: '954px',
			top:'-1px'
		      }, 500 , function(){$("#muestra").show();} ); 
		}
	});	
}

function animaratras(objeto){
	  $("#muestra").hide()
      $(objeto)
		.animate({ 
        opacity: '0',
		right:'-2px',
		height: '0px',
		width: '0px',
		top:'-1px'
      }, 500 );
    }
