
  /* Modified by Alex Spooner, 2009-03-10 15:52:05 EST */
  
  $(document).ready(function() {
  
    $("#faces li a")
      .click(function(event) {
        event.preventDefault();
        $(this).blur();
        var id = $(this).attr("rel"); 
        $("#profile_change").attr("class", "people"+id);
        $(this).blur();      
      })
      .hover(
        function(){
          var id = $(this).attr("rel"); 
          $("#faces_panel_center").html($("#name"+id).html());
        },
        function (){
         $("#faces_panel_center").html("Our Team");
        }
      );
    
    $("#faces_panel_left a").click(function(event){
      event.preventDefault();
      $(this).blur();
      $("#faces_holder").scrollTo('-=93px',800, {axis:'x'});      
    });
    $("#faces_panel_right a").click(function(event){
      event.preventDefault();
      $(this).blur();
      $("#faces_holder").scrollTo('+=93px',800, {axis:'x'});      
    });
    
    if (document.location.hash>"") {
      var id = document.location.hash.substring(1);
      $("#profile_change").attr("class", "people"+id);
      $("#faces_holder").scrollTo($('.face'+id),800, {axis:'x'}); 
    }
  
  });