jQuery(document).ready( function(){
	
	$('#Bands a').click(function() {
		$('.info').slideUp();
		theID = $(this).attr('id');
		$('#'+theID+'Info').slideDown();
		return false;
	});  
	 
	$('#Map').click(function() {
		$('.info').slideUp();
		theID = $(this).attr('id');
		$('#'+theID+'Info').slideDown();
		return false;
	});  
});
