// JavaScript Document

// JavaScript Document

/*	$("#burke_bio").hide();
	$("#eric_bio").hide();
	$("#mark_bio").hide();
	$("#peter_bio").hide();*/

$("#burke").click(function(){
	
 	$("#burke_bio").slideToggle(500);
	$("#eric_bio").hide();
	$("#mark_bio").hide();
	$("#peter_bio").hide();
	$("#theband").hide();
 })


$("#eric").click(function(){
	 
	$("#eric_bio").slideToggle(500); 
	$("#burke_bio").hide();
	$("#mark_bio").hide();
	$("#peter_bio").hide();
	$("#theband").hide();
})

$("#mark").click(function(){
 	 $("#mark_bio").slideToggle(500); 
 	 $("#peter_bio").hide();
	 $("#burke_bio").hide();
  	 $("#eric_bio").hide();
	 $("#theband").hide();
 })

$("#peter").click(function(){
     $("#peter_bio").slideToggle(500); 
     $("#burke_bio").hide();
 	 $("#eric_bio").hide();
	 $("#mark_bio").hide();
	 $("#theband").hide();
    
   })

