

jQuery(document).ready(function($){

	$(document.body).addClass('js');
	
	
	/**** Key People ****/
	var oProfiles = $('.pContainer').find('.profiles');
	
	oProfiles.each(function(){
		var proHeight = $(this).outerHeight();
		var conHeight =  $('.pContainer').height();

		$(this).height(conHeight - 7);
		
		$(this).hover(function() {
		  $(this).attr('id','current').animate({ height : proHeight },200,'swing');
		}, function() {
		  $(this).animate({ height : conHeight - 7 },200,'swing').removeAttr('id'); 
		});
		
	});		
	
	
});
