$(document).ready(function() {
	$('.bio img').css({display:'none'});
	$('.bio').prepend(' <img src="images/down.gif" alt="" style="float:right;margin:10px 0 0 0"/>')
	$('.bio').css({height:'20px',overflow:'hidden',cursor:'pointer'}).each(function(){
		$(this).toggle(
				function(){
					
					$(this).stop().animate({height:'150px'});
					$(this).children('img').fadeIn();
					
				},
				function(){
					$(this).stop().animate({height:'20px'});
					$(this).children('img').eq(1).fadeOut();
					
				}
			);
	});
	
});

