$("document").ready(function(){
	  $("address .map").hover(function() {
		  $(this).children("span").slideDown("slow");
	  }, function() {
		  $(this).children("span").animate({opacity: "hide"},"fast");
	  });
	});