function __init() {
	var _init;

	_init = '__init_' + $( 'body' ).attr( 'id' );

	if ( window[ _init ] )
		window[ _init ]();
	}

function __init_team() {
	$( 'body' ).addClass( 'initial' );

	$( '#pics li' ).click( __team_bio );
	}

function __team_bio() {
	$( 'body' ).removeClass( 'initial' );

	$( '#bios li' ).hide();

	$( 'li.' + $( this ).attr( 'id' ) ).show();
	$( '#bios' ).show();
	}

$( __init );
