function employeeText( id ) {
	
	if ( $( '#employee_' + id ).css( 'display' ) == 'block' ) {
		
		$( '#employee_' + id ).slideUp( 500, function(){
			
			$( '#link_' + id ).html( text_more );
		});
	} else {
		
		$( '#employee_' + id ).slideDown( 500, function(){
			
			$( '#link_' + id ).html( text_less );
		});
	}
}