jQuery(document).ready(function($) {  

$(document).pngFix();

$("#aboutSlide").innerfade({ 
	speed: "slow", 
	timeout: 4000, 
	type: "sequence", 
	containerheight: "406px" 
});


$(".accordion h4:first").addClass("active");
$(".accordion p:not(:first)").hide();
$(".accordion h4").click(function(){
$(this).next("p").slideToggle("slow")
.siblings("p:visible").slideUp("slow");
$(this).toggleClass("active");
$(this).siblings("h4").removeClass("active");
});

$("#Pelly").click(function() {
		
		$("#bPel").fadeIn("fast");
		$("#bPel").siblings().css("display", "none");

});

$("#Jen").click(function() {
		
		$("#bJen").fadeIn("fast");
		$("#bJen").siblings().css("display", "none");
		
});

$("#Brandon").click(function() {
		
		$("#bBran").fadeIn("fast");
		$("#bBran").siblings().css("display", "none");
		
});

$("#David").click(function() {
		
		$("#bDave").fadeIn("fast");
		$("#bDave").siblings().css("display", "none");
		
});

});
