// JavaScript Document
$(document).ready(function() {
	/* Begin People Functions */ 	
	var index = -1;
	$('#people .employee').hide();
	
	$('#staff_list li').click(function() {
		this_index=$('#staff_list li').index($(this));
		if(this_index == index) {
			return;
		}
		else {
			$('div.employee').fadeOut();
			$('div.employee').slice(this_index,this_index+1).fadeIn();
			index = this_index;
		}
	});
	 
  });