$(document).ready(function(){
	
	//hide text after the first one
	$(".bio_list .text:gt(-1)").hide();
	
	//hide message li after the 5th
	$(".bio_list li:gt(8)").hide();

	
	//toggle text
	$("#bio h2").click(function(){
		$(this).next(".text").slideToggle(500)
		return false;
	});


});

