$(document).ready(function(){
	
	//hide text after the first one
	$("#introtext #showhide:gt(-1)").hide();
	
	//hide message li after the 7th
/*	$(".bio_list li:gt(7)").hide();*/

	
	//toggle text
	$("#introtext h2").click(function(){
		$(this).next("#showhide").slideToggle(350)
		$("#showhide").css('opacity','.85')
		return false;
	});


});
