		$(document).ready( function() {
			$(".team .description").hide();
			$(".callall").toggle(
				function () {
					$(".team .description").show('fast', function(){$(this).prev().addClass('on');});
					$(this).children().addClass('on');
					$(".team h3").each( function(i){this.lastToggle = 1;} );
				},
				function () {
					$(".team .description").hide('fast', function(){$(this).prev().removeClass('on');});
					$(this).children().removeClass('on');
					$(".team h3").each( function(i){this.lastToggle = 5;} );
			});
			$(".team h3").toggle(
				function () {
					$(this).next().show('fast',function(){$(this).prev().addClass('on');});
				},
				function () {
					$(this).next().hide('fast',function(){$(this).prev().removeClass('on');});
			});
		});

