$(function() {
 
 $('#menu').children('li').mouseenter(function(){
    $(this).addClass("hover");  
  }).mouseleave(function(){
    $(this).removeClass("hover");
  });
  
  $('.teamitem p').css({'opacity':'0'});
  $('.teamitem').mouseenter(function() {
    $('.teamitem').stop().animate({'width': '2.928571428571429%'});
    $(this).stop().animate({'width': '45%'}).find('p').animate({'opacity': '1'});
  }).mouseleave(function() {
    $('.teamitem').stop().animate({'width': '6.142857142857143%'}).find('p').animate({'opacity': '0'});
  })
  
});
