$(document).ready(function(){

	$("div.moreInfo h2")
		.click(function(){
			/* $(this).parent().children().not("h2").slideToggle("fast"); */ 
			$(this).parent().children().not("h2").toggle(); 
			$(this).find(".inner img").toggle(); 
		})

	$("div.moreInfo").children().not("h2").hide();
	$("div.moreInfo h2 img.downArrow").show(); 
	$("div.moreInfo h2 img.upArrow").hide(); 
	$("div.toggleBar").show(); 

	$("div.moreBio")
		.click(function(){
			$(this).find("p").toggle();
			$(this).find("h3 img").toggle(); 
		})

	$("div.moreBio").find("p").hide();
	$("div.moreBio img.downArrow").show(); 
	$("div.moreBio img.upArrow").hide(); 


});

