$( document ).ready( function() {	
							  
	$('#map_container ul li').hide();
	$('#map_location_container ul li').hide();	
	$('#map1').show();
	$('#map_location1').show();
	

	$('.btn').click(function(){
			
			id = $(this).attr('title');
			$('#map_container ul li').hide();
			$('#map_location_container ul li').hide();

			map = '#map' + id;
			place = '#map_location' + id;
			
			$(map).fadeIn('slow');
			$(place).slideDown('normal');
			
			return false;
	});

} );




